20 lines
515 B
Ruby
20 lines
515 B
Ruby
class GitGame < Formula
|
|
desc "Game for git to guess who made which commit"
|
|
homepage "https://github.com/jsomers/git-game"
|
|
url "https://github.com/jsomers/git-game/archive/1.2.tar.gz"
|
|
sha256 "d893b2c813388754c16d867cf37726cd7e73c9ccd316735aac43bf1cd3ab1412"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "c700a65b591b1e95ab45bcd0349a75aeb8fdc9915480c7323a34830cd27075fd"
|
|
end
|
|
|
|
def install
|
|
bin.install "git-game"
|
|
end
|
|
|
|
test do
|
|
system "git", "game", "help"
|
|
end
|
|
end
|