2012-10-16 03:07:44 +00:00
|
|
|
class HerokuToolbelt < Formula
|
2015-03-23 19:38:49 +00:00
|
|
|
homepage "https://toolbelt.heroku.com/other"
|
2015-04-02 06:41:53 +00:00
|
|
|
url "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-3.30.4.tgz"
|
|
|
|
sha256 "51a92e85994c65d016823ad7b8fa74bf30ddeb59afb33751c1f93e8105c80e9e"
|
2015-04-02 13:45:13 +00:00
|
|
|
head "https://github.com/heroku/heroku.git"
|
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
|