aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/burl.rb
blob: 51fc642849cd6441704614fb3b5b50fed298f327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require "formula"

class Burl < Formula
  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