homebrew-core/Formula/burl.rb
2015-06-05 14:47:57 +01:00

16 lines
390 B
Ruby

require "formula"
class Burl < Formula
desc "Shell script wrapper that offers helpful shortcuts for curl(1)"
homepage "https://github.com/visionmedia/burl"
url "https://github.com/visionmedia/burl/archive/1.0.1.tar.gz"
sha1 "ee21caa267af9e3c679f3c4c38d4ccd6ba2dd655"
def install
bin.install "bin/burl"
end
test do
system "#{bin}/burl", "-I", "github.com"
end
end