f7ce135739
Closes Homebrew/homebrew#47025. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
21 lines
648 B
Ruby
21 lines
648 B
Ruby
class Desk < Formula
|
|
desc "Lightweight workspace manager for the shell"
|
|
homepage "https://github.com/jamesob/desk"
|
|
url "https://github.com/jamesob/desk/archive/v0.4.0.tar.gz"
|
|
sha256 "1589cb02d1104b4008d9d1a1ee1a315d0bf5a8e8d6f8408d9f60201a4f04c896"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install "desk"
|
|
bash_completion.install "shell_plugins/bash/desk"
|
|
zsh_completion.install "shell_plugins/zsh/_desk"
|
|
end
|
|
|
|
test do
|
|
(testpath/".desk/desks/test-desk.sh").write("#\n# Description: A test desk\n#")
|
|
list = pipe_output("#{bin}/desk list")
|
|
assert_match /test-desk/, list
|
|
assert_match /A test desk/, list
|
|
end
|
|
end
|