evilchelu / fuzzy_file_finder forked from mdemare/fuzzy_file_finder

UNMAINTAINED! A (slightly enhanced) implementation of TextMate's cmd-T lookup functionality, in Ruby, for embedding in other projects

This URL has Read+Write access

fuzzy_file_finder / Rakefile
100644 20 lines (16 sloc) 0.555 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
begin
  require 'echoe'
rescue LoadError
  abort "You'll need to have `echoe' installed to use Net::SSH's Rakefile"
end
 
require './lib/fuzzy_file_finder'
version = FuzzyFileFinder::Version::STRING.dup
if ENV['SNAPSHOT'].to_i == 1
  version << "." << Time.now.utc.strftime("%Y%m%d%H%M%S")
end
 
Echoe.new('fuzzy_file_finder', version) do |p|
  p.author = "Jamis Buck"
  p.email = "jamis@jamisbuck.org"
  p.summary = "an implementation of TextMate's cmd-T search functionality"
 
  p.rdoc_pattern = /^(lib|README.rdoc)/
end