2012-10-16 03:07:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class HerokuToolbelt < Formula
|
|
|
|
homepage 'https://toolbelt.heroku.com/other'
|
2014-12-12 20:39:22 +00:00
|
|
|
url 'http://assets.heroku.com.s3.amazonaws.com/heroku-client/heroku-client-3.20.0.tgz'
|
|
|
|
sha1 'e3edb525fc25d4fbafc46768cc06353a5519db88'
|
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
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2012-10-16 03:07:44 +00:00
|
|
|
system "#{bin}/heroku", "version"
|
|
|
|
end
|
|
|
|
end
|