aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gist.rb
blob: 6ce00299ca497d45eb6c39b440b86fa1995490a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Gist < Formula
  homepage 'https://github.com/defunkt/gist'
  url 'https://github.com/defunkt/gist/archive/v4.1.1.tar.gz'
  sha1 '47c9708acd56fb2e7cd463b607a5dd12b9a77235'
  head 'https://github.com/defunkt/gist.git'

  def install
    rake "install", "prefix=#{prefix}"
  end

  test do
    system "#{bin}/gist", '--version'
  end
end