2009-11-24 17:10:35 +00:00
|
|
|
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"
|
2010-04-07 05:41:51 +00:00
|
|
|
bin.install %w[pp resty pypp]
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
|
|
|
"The Perl printy-printer (pp) depends on JSON from CPAN."
|
2009-11-24 17:10:35 +00:00
|
|
|
end
|
|
|
|
end
|