2012-10-16 03:07:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class HerokuToolbelt < Formula
|
|
|
|
homepage 'https://toolbelt.heroku.com/other'
|
2013-08-08 18:40:34 +00:00
|
|
|
url 'http://assets.heroku.com.s3.amazonaws.com/heroku-client/heroku-client-2.39.5.tgz'
|
|
|
|
sha1 'e2422a3e781766661b7ba38dada1ab785dcbc542'
|
2012-10-16 03:07:44 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
libexec.install Dir["*"]
|
|
|
|
(bin/'heroku').write <<-EOS.undent
|
|
|
|
#!/usr/bin/env sh
|
2012-10-24 19:26:57 +00:00
|
|
|
exec "#{libexec}/bin/heroku" "$@"
|
2012-10-16 03:07:44 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
def test
|
|
|
|
system "#{bin}/heroku", "version"
|
|
|
|
end
|
|
|
|
end
|