blob: 811aa881b5945194409c940e4a5bbbda2313701f (
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
33
 | class GitPlus < Formula
  homepage "https://github.com/tkrajina/git-plus"
  head "https://github.com/tkrajina/git-plus.git"
  url "https://github.com/tkrajina/git-plus/archive/v0.1.0.tar.gz"
  sha256 "d7076ed3fd8e6e4bc2b93b9880adf58bea59b0f6fe95e05053f00247ae8cb609"
  depends_on :python if MacOS.version <= :snow_leopard
  def install
    site_packages = libexec/"lib/python2.7/site-packages"
    libexec_bin = libexec/"bin"
    ENV.prepend_create_path "PYTHONPATH", site_packages
    site_packages.install "gitutils.py"
    libexec_bin.install Dir["git-*"]
    bin.install Dir[libexec_bin/"*"]
    bin.env_script_all_files libexec_bin, :PYTHONPATH => ENV["PYTHONPATH"]
  end
  test do
    mkdir "testme" do
      system "git", "init"
      touch "README"
      system "git", "add", "README"
      system "git", "commit", "-m", "testing"
      rm "README"
    end
    assert_match /D README/, shell_output("#{bin}/git-multi")
  end
end
 |