blob: 3b7de1b9373d715bdf6d672f0afc4455ff49d913 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
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"
bottle do
cellar :any
sha1 "8785269ef827076ed2dd7bf510b759294774a995" => :yosemite
sha1 "22c609efffe6737c1cbb2b3abe7b152a07b4f6af" => :mavericks
sha1 "8c47db51e200c21cb69c7c64ace23412c6ee93b2" => :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
|