f312d5add9
Closes Homebrew/homebrew#35519. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
392 B
Ruby
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.21.4.tgz'
|
|
sha1 '703be79c0c6917582e4f6811b96cea147670a7a2'
|
|
|
|
def install
|
|
libexec.install Dir["*"]
|
|
bin.write_exec_script libexec/"bin/heroku"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/heroku", "version"
|
|
end
|
|
end
|