20 lines
492 B
Ruby
20 lines
492 B
Ruby
class BrewGem < Formula
|
|
desc "Install RubyGems as Homebrew formulae"
|
|
homepage "https://github.com/sportngin/brew-gem"
|
|
url "https://github.com/sportngin/brew-gem/archive/v1.1.0.tar.gz"
|
|
sha256 "c968b767b1d73d4b4abbf263a4e102796896d6439dca42f71c8650166ad6f63d"
|
|
license "MIT"
|
|
head "https://github.com/sportngin/brew-gem.git"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
lib.install Dir["lib/*"]
|
|
bin.install "bin/brew-gem"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/brew-gem", "help"
|
|
end
|
|
end
|