homebrew-core/Formula/heroku.rb
ilovezfs 47a003cbc9 heroku 3.43.5
Closes #2535.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
2016-07-01 10:08:13 -07:00

25 lines
798 B
Ruby

class Heroku < Formula
desc "Everything you need to get started with Heroku"
homepage "https://toolbelt.heroku.com/standalone"
url "https://s3.amazonaws.com/assets.heroku.com/heroku-client/heroku-client-3.43.5.tgz"
sha256 "b71cbb64770cde487d76b6311e50582f08984ff5689aa024ba02d7fd81d0c1c0"
head "https://github.com/heroku/heroku.git"
bottle :unneeded
depends_on :arch => :x86_64
depends_on :ruby => "1.9"
def install
libexec.install Dir["*"]
# turn off autoupdates (off by default in HEAD)
if build.stable?
inreplace libexec/"bin/heroku", "Heroku::Updater.inject_libpath", "Heroku::Updater.disable(\"Use `brew upgrade heroku` to update\")"
end
bin.write_exec_script libexec/"bin/heroku"
end
test do
system "#{bin}/heroku", "version"
end
end