homebrew-core/Formula/selecta.rb
Mike McQuaid 7a4dabfc1a Use hash rockets again. (#5177)
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
2016-09-24 16:45:48 +01:00

18 lines
459 B
Ruby

class Selecta < Formula
desc "Fuzzy text selector for files and anything else you need to select"
homepage "https://github.com/garybernhardt/selecta"
url "https://github.com/garybernhardt/selecta/archive/v0.0.6.tar.gz"
sha256 "c5e0fdab53b3c4942e46c1a2c5a38158f21eb0520c6391f77d6d0a7d2a023318"
bottle :unneeded
depends_on :ruby => "1.9"
def install
bin.install "selecta"
end
test do
system "#{bin}/selecta", "--version"
end
end