homebrew-core/Formula/gws.rb
2017-05-06 11:12:24 +02:00

24 lines
683 B
Ruby

class Gws < Formula
desc "Manage workspaces composed of git repositories"
homepage "https://streakycobra.github.io/gws/"
url "https://github.com/StreakyCobra/gws/archive/0.1.10.tar.gz"
sha256 "816592f3fec8c437ba96d17dbbfa911d88d1fa70071d3d127efc64f73551f747"
bottle :unneeded
depends_on "bash"
def install
bin.install "src/gws"
bash_completion.install "completions/bash"
zsh_completion.install "completions/zsh"
end
test do
system "git", "init", "project"
system "#{bin}/gws", "init"
output = shell_output("#{bin}/gws status")
assert_equal "project:\n Clean [Local only repository]\n", output
end
end