public
Description: A (slightly enhanced) implementation of TextMate's cmd-T lookup functionality, in Ruby, for embedding in other projects
Homepage:
Clone URL: git://github.com/jamis/fuzzy_file_finder.git
Click here to lend your support to: fuzzy_file_finder and make a donation at www.pledgie.com !
commit  f645acebfad05c339ba14296da1f9b2a1d867580
tree    04a4e7500fd4c5956f5c3283c75387357c4b3697
parent  6328948cbeed388d0f8dd10f28c468b109840926
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