homebrew-core/Formula/burl.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

14 lines
397 B
Ruby

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"
sha256 "634949b7859ddf7c75a89123608998f8dac8ced8c601fa2c2717569caeaa54e5"
def install
bin.install "bin/burl"
end
test do
system "#{bin}/burl", "-I", "github.com"
end
end