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