homebrew-core/Formula/modman.rb
Bobby Burden 867083fefc Version bump from 1.9.9 to 1.10
Closes Homebrew/homebrew#35394.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-12-31 14:57:59 +00:00

16 lines
374 B
Ruby

require "formula"
class Modman < Formula
homepage "https://github.com/colinmollenhour/modman"
url "https://github.com/colinmollenhour/modman/archive/1.10.tar.gz"
sha1 "6469426438d4f932f6863d6e2669a264b254944d"
def install
bin.install "modman"
bash_completion.install "bash_completion" => "modman.bash"
end
test do
system "#{bin}/modman"
end
end