homebrew-core/Formula/resty.rb
Tianyi Cui 8b275c916a Use https for all GitHub URLs
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-18 20:14:27 -08:00

23 lines
497 B
Ruby

require 'formula'
class Resty <Formula
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