blob: ce49788de6fb8ffa379128979465bb683632ca9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
  | 
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
    system "rake", "install", "prefix=#{prefix}"
  end
end
  |