homebrew-core/Formula/heroku-toolbelt.rb
dickeyxxx cae08a5d52 heroku-toolbelt 3.20.0
Also: no longer requires Ruby 1.9.

Closes Homebrew/homebrew#34930.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-12 22:23:36 +00:00

16 lines
392 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-3.20.0.tgz'
sha1 'e3edb525fc25d4fbafc46768cc06353a5519db88'
def install
libexec.install Dir["*"]
bin.write_exec_script libexec/"bin/heroku"
end
test do
system "#{bin}/heroku", "version"
end
end