homebrew-core/Formula/heroku-toolbelt.rb
Ed Robinson c2d2ae890a heroku-toolbelt 2.37.2
Closes Homebrew/homebrew#19207.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-04-15 07:25:11 -07:00

19 lines
457 B
Ruby

require 'formula'
class HerokuToolbelt < Formula
homepage 'https://toolbelt.heroku.com/other'
url 'http://assets.heroku.com.s3.amazonaws.com/heroku-client/heroku-client-2.37.2.tgz'
sha1 '2a077d68f46948a83cfced0686309695302d1417'
def install
libexec.install Dir["*"]
(bin/'heroku').write <<-EOS.undent
#!/usr/bin/env sh
exec "#{libexec}/bin/heroku" "$@"
EOS
end
def test
system "#{bin}/heroku", "version"
end
end