homebrew-core/Formula/git-url-sub.rb
2015-06-05 14:47:57 +01:00

19 lines
627 B
Ruby

class GitUrlSub < Formula
desc "Recursively substitute remote URLs for multiple repos"
homepage "https://gosuri.github.io/git-url-sub"
url "https://github.com/gosuri/git-url-sub/archive/1.0.1.tar.gz"
sha256 "6c943b55087e786e680d360cb9e085d8f1d7b9233c88e8f2e6a36f8e598a00a9"
head "https://github.com/gosuri/git-url-sub.git"
def install
system "make", "install", "PREFIX=#{prefix}"
end
test do
system "git", "init"
system "git", "remote", "add", "origin", "foo"
system "#{bin}/git-url-sub", "-c", "foo", "bar"
assert_match(/origin\s+bar \(fetch\)/, shell_output("git remote -v"))
end
end