homebrew-core/Formula/git-fixup.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

33 lines
984 B
Ruby

class GitFixup < Formula
desc "Alias for git commit --fixup <ref>"
homepage "https://github.com/keis/git-fixup"
url "https://github.com/keis/git-fixup/archive/v1.0.1.tar.gz"
sha256 "6e08eb0af39ca3327642ffecbd36a706fd7544d07ac71b8f58b437df33f152cf"
head "https://github.com/keis/git-fixup.git", :branch => "master"
bottle do
cellar :any
sha1 "51111ec8f5f517ea73a5c465dd5ce1b066bbc1f0" => :yosemite
sha1 "3d018cad30af595c34cb2a9eaa5457d6665abf09" => :mavericks
sha1 "324a7f422f26e2a84cb587b2005a0da36c3d08f7" => :mountain_lion
end
def install
system "make", "PREFIX=#{prefix}", "install"
zsh_completion.install "completion.zsh" => "_git-fixup"
end
test do
system "git", "init"
(testpath/"test").write "foo"
system "git", "add", "test"
system "git", "commit", "--message", "Initial commit"
(testpath/"test").delete
(testpath/"test").write "bar"
system "git", "add", "test"
system "git", "fixup"
end
end