e632a20410
Closes #31160. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
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.2.tar.gz"
|
|
sha256 "50962a69cd378be61630f93963f47c575da6f2751064f0c3e29296e5766ea7d6"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "gimme"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/gimme", "-l"
|
|
end
|
|
end
|