lunar.gemspec in lunar-0.2.3 vs lunar.gemspec in lunar-0.3.0
- old
+ new
@@ -3,15 +3,15 @@
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{lunar}
- s.version = "0.2.3"
+ s.version = "0.3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Cyril David"]
- s.date = %q{2010-05-03}
+ s.date = %q{2010-05-06}
s.description = %q{uses sorted sets and sets, sorting by score}
s.email = %q{cyx.ucron@gmail.com}
s.extra_rdoc_files = [
"LICENSE",
"README.md"
@@ -23,19 +23,22 @@
"README.md",
"Rakefile",
"VERSION",
"examples/ohm.rb",
"lib/lunar.rb",
+ "lib/lunar/fuzzy_word.rb",
"lib/lunar/index.rb",
"lib/lunar/result_set.rb",
"lib/lunar/scoring.rb",
"lib/lunar/search.rb",
"lib/lunar/sets.rb",
"lib/lunar/words.rb",
"lunar.gemspec",
"test/helper.rb",
"test/test_lunar.rb",
+ "test/test_lunar_fuzzy.rb",
+ "test/test_lunar_fuzzy_word.rb",
"test/test_lunar_index.rb",
"test/test_lunar_scoring.rb",
"test/test_lunar_search.rb",
"test/test_sets.rb",
"vendor/nest/nest.rb",
@@ -78,10 +81,12 @@
s.rubygems_version = %q{1.3.6}
s.summary = %q{a minimalistic full text search implementation in redis}
s.test_files = [
"test/helper.rb",
"test/test_lunar.rb",
+ "test/test_lunar_fuzzy.rb",
+ "test/test_lunar_fuzzy_word.rb",
"test/test_lunar_index.rb",
"test/test_lunar_scoring.rb",
"test/test_lunar_search.rb",
"test/test_sets.rb",
"examples/ohm.rb"
@@ -91,13 +96,16 @@
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<contest>, [">= 0"])
+ s.add_development_dependency(%q<mocha>, [">= 0"])
else
s.add_dependency(%q<contest>, [">= 0"])
+ s.add_dependency(%q<mocha>, [">= 0"])
end
else
s.add_dependency(%q<contest>, [">= 0"])
+ s.add_dependency(%q<mocha>, [">= 0"])
end
end