blob: 1c33decde5ce4862e2af09cc70cce4e99e4f0a93 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | require "formula"
class BrewGem < Formula
  homepage "https://github.com/sportngin/brew-gem"
  url "https://github.com/sportngin/brew-gem/archive/0.5.1.tar.gz"
  sha1 "37b77607119f9ca95a7d28c231bb4f3bb3fe1c3f"
  def install
    bin.install "bin/brew-gem"
  end
end
 |