ripgrep/pkg/brew/ripgrep.rb
Andrew Gallant dad73b92eb Add brew.
2016-09-21 17:28:19 -04:00

17 lines
502 B
Ruby

require 'formula'
class Ripgrep < Formula
version '0.1.8'
desc "Search tool like grep and The Silver Searcher."
homepage "https://github.com/BurntSushi/ripgrep"
if Hardware::CPU.is_64_bit?
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-x86_64-apple-darwin.tar.gz"
else
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-i686-apple-darwin.tar.gz"
end
def install
bin.install "rg"
end
end