2014-02-05 18:54:49 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Burl < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Shell script wrapper that offers helpful shortcuts for curl(1)"
|
2014-02-05 18:54:49 +00:00
|
|
|
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
|