16 lines
377 B
Ruby
16 lines
377 B
Ruby
class Gimme < Formula
|
|
desc "Shell script to install any Go version"
|
|
homepage "https://github.com/travis-ci/gimme"
|
|
url "https://github.com/travis-ci/gimme/archive/v1.5.0.tar.gz"
|
|
sha256 "508f0c67a48cf1901c5a5a130918068076696a21638035b80c694eb8ff42f5ec"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "gimme"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/gimme", "-l"
|
|
end
|
|
end
|