197e6b093a
* selecta 0.0.7 * Update selecta.rb
18 lines
486 B
Ruby
18 lines
486 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.7.tar.gz"
|
|
sha256 "00d1bdabb44b93f90018438f8ffc0780f96893b809b52956abb9485f509d03d2"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "ruby" if MacOS.version <= :mountain_lion
|
|
|
|
def install
|
|
bin.install "selecta"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/selecta", "--version"
|
|
end
|
|
end
|