homebrew-core/Formula/zsh-git-prompt.rb
Mike McQuaid 512758e6eb Rubocop 0.57.1 style fixes (#28754)
Realign trailing EOS.
2018-06-09 01:27:43 -07:00

24 lines
669 B
Ruby

class ZshGitPrompt < Formula
desc "Informative git prompt for zsh"
homepage "https://github.com/olivierverdier/zsh-git-prompt"
url "https://github.com/olivierverdier/zsh-git-prompt/archive/v0.5.tar.gz"
sha256 "87e5a908369f402e975426ffd61a8800f1c04c0a293f1d4015a6fb1f4408e77d"
bottle :unneeded
def install
prefix.install Dir["*.{sh,py}"]
end
def caveats; <<~EOS
Make sure zsh-git-prompt is loaded from your .zshrc:
source "#{opt_prefix}/zshrc.sh"
EOS
end
test do
system "git", "init"
zsh_command = ". #{opt_prefix}/zshrc.sh && git_super_status"
assert_match "master", shell_output("zsh -c '#{zsh_command}'")
end
end