homebrew-core/Formula/heroku.rb
Jeff Dickey a852a8cda8 heroku 5.6.11
Closes #8571.

Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
2017-01-07 08:28:48 +01:00

20 lines
532 B
Ruby

class Heroku < Formula
desc "Everything you need to get started with Heroku"
homepage "https://cli.heroku.com"
url "https://cli-assets.heroku.com/branches/stable/5.6.11-3b6a56e/heroku-v5.6.11-3b6a56e-darwin-amd64.tar.xz"
version "5.6.11-3b6a56e"
sha256 "a69969374ca559f0f1e76905ef6ae856280d2cce859e7cd68357c201ef96a99d"
bottle :unneeded
depends_on :arch => :x86_64
def install
libexec.install Dir["*"]
bin.install_symlink libexec/"bin/heroku"
end
test do
system bin/"heroku", "version"
end
end