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 / fuzzy_file_finder.gemspec
100644 57 lines (49 sloc) 1.833 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Gem::Specification for Fuzzy_file_finder-1.0.4
# Originally generated by Echoe
 
Gem::Specification.new do |s|
  s.name = %q{fuzzy_file_finder}
  s.version = "1.0.4"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Jamis Buck"]
  s.date = %q{2008-10-12}
  s.description = %q{an implementation of TextMate's cmd-T search functionality}
  s.email = %q{jamis@jamisbuck.org}
  s.extra_rdoc_files = ["lib/fuzzy_file_finder.rb", "README.rdoc"]
  s.files = ["lib/fuzzy_file_finder.rb", "LICENSE", "Manifest", "README.rdoc", "fuzzy_file_finder.gemspec"]
  s.has_rdoc = true
  s.homepage = %q{}
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Fuzzy_file_finder", "--main", "README.rdoc"]
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{fuzzy_file_finder}
  s.rubygems_version = %q{1.2.0}
  s.summary = %q{an implementation of TextMate's cmd-T search functionality}
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if current_version >= 3 then
    else
    end
  else
  end
end
 
 
# # Original Rakefile source (requires the Echoe gem):
#
# 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