homebrew-core/Formula/gws.rb
Nikolaus Wittenstein e5a661b62a Clean up existing descriptions
Some descriptions were added before the mass immigration of descs,
and this commit brings them in line with the original specs of
the brew-desc project:
 - removed articles at the beginnings of descriptions
 - shortened many descriptions
 - removed formula names from descriptions
2015-06-05 14:47:37 +01:00

23 lines
663 B
Ruby

class Gws < Formula
homepage "https://streakycobra.github.io/gws/"
desc "Manage workspaces composed of git repositories"
url "https://github.com/StreakyCobra/gws/archive/0.1.7.tar.gz"
sha256 "36c25392f5cb93a39441a1973842249a62b605a2a7e369a040c78450683697d0"
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