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

# resty is a bash wrapper around curl for testing HTTP/REST APIs.

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

  def install
    system "mv README.markdown README"
    # Note: pp depends on perl JSON module, which we don't install for you.
    bin.install %w[pp resty]
  end
end