homebrew-core/Formula/gws.rb

25 lines
682 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.8.tar.gz"
sha256 "c240601b0adcc5ae402199217fc0d5fd6775ada69919a860ad3c1c4b16805e63"
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