2012-10-16 03:07:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class HerokuToolbelt < Formula
|
|
|
|
homepage 'https://toolbelt.heroku.com/other'
|
2013-08-10 22:46:18 +00:00
|
|
|
url 'http://assets.heroku.com.s3.amazonaws.com/heroku-client/heroku-client-2.40.0.tgz'
|
|
|
|
sha1 '8ab041df01346427aeedd2bfe2c8900be7f3b390'
|
2012-10-16 03:07:44 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir["*"]
|
2013-08-13 14:09:22 +00:00
|
|
|
bin.write_exec_script libexec/"bin/heroku"
|
2012-10-16 03:07:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/heroku", "version"
|
|
|
|
end
|
|
|
|
end
|