2015-07-28 15:16:13 +00:00
|
|
|
class Gimme < Formula
|
2015-08-01 09:35:45 +00:00
|
|
|
desc "Shell script to install any Go version"
|
2015-07-28 15:16:13 +00:00
|
|
|
homepage "https://github.com/travis-ci/gimme"
|
2016-07-02 16:47:49 +00:00
|
|
|
url "https://github.com/travis-ci/gimme/archive/v1.0.0.tar.gz"
|
|
|
|
sha256 "0e9342433284b8b7cfdf5587e226fd2da5123e54bec37114fdde365db28b6911"
|
2015-07-28 15:16:13 +00:00
|
|
|
|
2015-10-23 11:05:14 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2015-07-28 15:16:13 +00:00
|
|
|
def install
|
|
|
|
bin.install "gimme"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/gimme", "-l"
|
|
|
|
end
|
|
|
|
end
|