2016-10-03 23:39:34 +02:00
|
|
|
class RipgrepBin < Formula
|
2016-11-06 23:51:14 +02:00
|
|
|
version '0.2.8'
|
2016-09-21 23:28:19 +02:00
|
|
|
desc "Search tool like grep and The Silver Searcher."
|
|
|
|
homepage "https://github.com/BurntSushi/ripgrep"
|
2016-09-26 19:53:19 +02:00
|
|
|
url "https://github.com/BurntSushi/ripgrep/releases/download/#{version}/ripgrep-#{version}-x86_64-apple-darwin.tar.gz"
|
2016-11-06 23:51:14 +02:00
|
|
|
sha256 "349aba7561028e869932bae8fd27cd5ce45a68f47f05d426d6701a50a8474aa0"
|
2016-09-21 23:28:19 +02:00
|
|
|
|
2016-10-03 23:39:34 +02:00
|
|
|
conflicts_with "ripgrep"
|
|
|
|
|
2016-09-21 23:28:19 +02:00
|
|
|
def install
|
|
|
|
bin.install "rg"
|
2016-09-23 02:07:43 +02:00
|
|
|
man1.install "rg.1"
|
2016-09-21 23:28:19 +02:00
|
|
|
end
|
|
|
|
end
|