homebrew-core/Formula/gcutil.rb
Ted Pennings 4cd0935be7 Convert all 'def test' formulae to 'test do'
Closes Homebrew/homebrew#26942.
Closes Homebrew/homebrew#26946.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-24 19:54:02 -08:00

16 lines
391 B
Ruby

require 'formula'
class Gcutil < Formula
homepage 'https://developers.google.com/compute/docs/gcutil/'
url 'https://dl.google.com/dl/cloudsdk/release/artifacts/gcutil-1.13.0.zip'
sha1 'c7a5cf7f5e0aa5e1eff20147532a320a8684ae45'
def install
libexec.install 'gcutil', 'lib'
bin.install_symlink libexec/"gcutil"
end
test do
system "#{bin}/gcutil", "version"
end
end