homebrew-core/Formula/gws.rb

25 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.16.tar.gz"
sha256 "695df2ca872fc0ab4b8175c74fdab4d843534574e05885c6a1a6328951ccca74"
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