Update resty formula.

master
Adam Vandenberg 2010-04-06 22:41:51 -07:00
parent 76f0dcfa58
commit c7d1183804
1 changed files with 5 additions and 4 deletions

View File

@ -1,14 +1,15 @@
require 'formula' require 'formula'
# resty is a bash wrapper around curl for testing HTTP/REST APIs.
class Resty <Formula class Resty <Formula
head 'git://github.com/micha/resty.git' head 'git://github.com/micha/resty.git'
homepage 'http://github.com/micha/resty' homepage 'http://github.com/micha/resty'
def install def install
system "mv README.markdown README" system "mv README.markdown README"
# Note: pp depends on perl JSON module, which we don't install for you. bin.install %w[pp resty pypp]
bin.install %w[pp resty] end
def caveats
"The Perl printy-printer (pp) depends on JSON from CPAN."
end end
end end