2015-02-25 00:55:10 +00:00
|
|
|
class GitFixup < Formula
|
|
|
|
homepage "https://github.com/keis/git-fixup"
|
|
|
|
url "https://github.com/keis/git-fixup/archive/v1.0.0.tar.gz"
|
|
|
|
sha1 "836613c7b9d1ccafaa5f5250b6ff2e125fabf974"
|
|
|
|
|
|
|
|
head "https://github.com/keis/git-fixup.git", :branch => "master"
|
|
|
|
|
2015-02-25 18:00:09 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "8785269ef827076ed2dd7bf510b759294774a995" => :yosemite
|
|
|
|
sha1 "22c609efffe6737c1cbb2b3abe7b152a07b4f6af" => :mavericks
|
|
|
|
sha1 "8c47db51e200c21cb69c7c64ace23412c6ee93b2" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2015-02-25 00:55:10 +00:00
|
|
|
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
|