1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-08-14 11:45:46 -07:00
Files
ripgrep/pkg/brew/ripgrep-bin.rb
Andrew Gallant a45fe94240 update brew tap
2017-04-09 10:28:22 -04:00

19 lines
595 B
Ruby

class RipgrepBin < Formula
version '0.5.1'
desc "Search tool like grep and The Silver Searcher."
homepage "https://github.com/BurntSushi/ripgrep"
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-x86_64-apple-darwin.tar.gz"
sha256 "517e40823f151ceb85840c8f147206360ee093aecbe96de20be4c2d5517d51ca"
conflicts_with "ripgrep"
def install
bin.install "rg"
man1.install "rg.1"
bash_completion.install "complete/rg.bash-completion"
fish_completion.install "complete/rg.fish"
zsh_completion.install "complete/_rg"
end
end