aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gist.rb
blob: 81d2a2421c71635cf0b3cd57a66d520938ea91d0 (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/tarball/v3.1.0'
  sha1 '3271be7d41ac545afd17772652dda7adc7c90d7a'
  head 'https://github.com/defunkt/gist.git'

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

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