homebrew-core/Formula/brew-gem.rb

20 lines
477 B
Ruby
Raw Normal View History

class BrewGem < Formula
desc "Install rubygems as homebrew formulae"
homepage "https://github.com/sportngin/brew-gem"
2016-08-24 01:18:46 +00:00
url "https://github.com/sportngin/brew-gem/archive/v0.8.0.tar.gz"
sha256 "1289b1444af97a5405e9ef5fb230951ce2e0430693a92a9d473e45e1507a23e0"
2016-05-17 18:54:57 +00:00
head "https://github.com/sportngin/brew-gem.git"
2015-10-23 08:34:23 +00:00
bottle :unneeded
def install
2016-05-17 18:54:57 +00:00
lib.install Dir["lib/*"]
bin.install "bin/brew-gem"
end
2016-05-17 18:54:57 +00:00
test do
system "#{bin}/brew-gem", "help"
end
end