diff options
| author | Simon Sigurdhsson | 2013-06-24 20:44:35 +0200 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-07-02 20:10:29 -0700 | 
| commit | f52b5560b8a7704461008b6f5dc17eb0bad96a38 (patch) | |
| tree | b5078c6097e972de34b11e4628852ac2cf578ab3 /Library | |
| parent | 2570e4bcf9eeb2c2f9151f6bb975630131f2fcd1 (diff) | |
| download | homebrew-f52b5560b8a7704461008b6f5dc17eb0bad96a38.tar.bz2 | |
fuzzy-find v0.5
Closes #20949.
Closes #20844.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/fuzzy-find.rb | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/fuzzy-find.rb b/Library/Formula/fuzzy-find.rb new file mode 100644 index 000000000..8981a5776 --- /dev/null +++ b/Library/Formula/fuzzy-find.rb @@ -0,0 +1,19 @@ +require 'formula' + +class FuzzyFind < Formula +  homepage "https://github.com/silentbicycle/ff" +  url "https://github.com/silentbicycle/ff/archive/v0.5-first-form.tar.gz" +  version "0.5" +  sha1 "698526ae2c725763da0990a4112632ac4b3194c8" + +  head 'https://github.com/silentbicycle/ff.git' + +  def install +    system "make" +    bin.install "ff" +  end + +  test do +    system "#{bin}/ff", "-t" +  end +end  | 
