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

class Resty <Formula
  head 'git://github.com/micha/resty.git'
  homepage 'http://github.com/micha/resty'

  def install
    system "mv README.markdown README"
    bin.install %w[pp resty pypp]
  end

  def caveats
    "The Perl printy-printer (pp) depends on JSON from CPAN."
  end
end