blob: 6b9660f6f7aa3d54340cc2cf92bdc192f6996ae9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
class GitSsh < Formula
homepage "https://github.com/lemarsu/git-ssh"
url "https://github.com/lemarsu/git-ssh/archive/v0.2.0.tar.gz"
sha256 "f7cf45f71e1f3aa23ef47cbbc411855f60d15ee69992c9f57843024e241a842f"
def install
# Change loading of required code from libexec location (Cellar only)
inreplace "bin/git-ssh" do |s|
s.sub!(/path = .*$/, "path = '#{libexec}'")
end
# Install main script
bin.install "bin/git-ssh"
# Install required code into libexec location (Cellar only)
libexec.install Dir["lib/*"]
end
test do
assert_equal "#{bin}/git-ssh v#{version}",
shell_output("#{bin}/git-ssh -V").chomp
end
end
|