aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/resty.rb
blob: babb87ec64201a3fcded30377f347cc10b17ca10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
require 'formula'

class Resty <Formula
  url 'https://github.com/micha/resty/tarball/1.1'
  md5 'e1794ae1e5e7427e4b908cf4ecbb6adb'
  head 'git://github.com/micha/resty.git'
  homepage 'https://github.com/micha/resty'

  # Don't take +x off these files
  skip_clean 'bin'

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

  def caveats; <<-EOS.undent
    The Python printy-printer (pypp) uses the json module, available in
    Python 2.6 and newer.

    The Perl printy-printer (pp) depends on JSON from CPAN:
      cpan JSON
    EOS
  end
end