blob: a89124f35219662b6d2c99cf5adcee100ace7071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  | 
require 'formula'
class HerokuToolbelt < Formula
  homepage 'https://toolbelt.heroku.com/other'
  url 'http://assets.heroku.com.s3.amazonaws.com/heroku-client/heroku-client-3.0.1.tgz'
  sha1 '11a70ecbb686c187be8502814e9249f4970163e3'
  def install
    libexec.install Dir["*"]
    bin.write_exec_script libexec/"bin/heroku"
  end
  def test
    system "#{bin}/heroku", "version"
  end
end
  |