-
Notifications
You must be signed in to change notification settings - Fork 2
/
pop.rb
39 lines (33 loc) · 1.08 KB
/
pop.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# typed: false
# frozen_string_literal: true
# This file was generated by GoReleaser. DO NOT EDIT.
class Pop < Formula
desc "A Tasty Treat For All Your Database Needs"
homepage "https://gobuffalo.io/documentation/database/pop/"
version "6.1.1"
on_macos do
if Hardware::CPU.arm?
url "https://github.com/gobuffalo/pop/releases/download/v6.1.1/pop_6.1.1_darwin_arm64.tar.gz"
sha256 "3a61167067b4e8d0fb211597c858497df75e6a80a57b33570d21ba325e4ad896"
def install
bin.install "soda"
end
end
if Hardware::CPU.intel?
url "https://github.com/gobuffalo/pop/releases/download/v6.1.1/pop_6.1.1_darwin_amd64.tar.gz"
sha256 "d14adda53efa836266e9a4e966f0bde9c7b921d8368ca24d0cc8a712ff000128"
def install
bin.install "soda"
end
end
end
on_linux do
if Hardware::CPU.intel?
url "https://github.com/gobuffalo/pop/releases/download/v6.1.1/pop_6.1.1_linux_amd64.tar.gz"
sha256 "bab8a7f7da2aa6546beafd9d6f34c7b07d2dc7ec253ef53ba1dc2767ab899fb5"
def install
bin.install "soda"
end
end
end
end