# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# 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.1"

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Cyril David"]
  s.date = %q{2010-05-02}
  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"
  ]
  s.files = [
    ".document",
     ".gitignore",
     "LICENSE",
     "README.md",
     "Rakefile",
     "VERSION",
     "examples/ohm.rb",
     "lib/lunar.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_index.rb",
     "test/test_lunar_scoring.rb",
     "test/test_lunar_search.rb",
     "test/test_sets.rb",
     "vendor/nest/nest.rb",
     "vendor/redis/.gitignore",
     "vendor/redis/LICENSE",
     "vendor/redis/README.markdown",
     "vendor/redis/Rakefile",
     "vendor/redis/benchmarking/logging.rb",
     "vendor/redis/benchmarking/pipeline.rb",
     "vendor/redis/benchmarking/speed.rb",
     "vendor/redis/benchmarking/suite.rb",
     "vendor/redis/benchmarking/worker.rb",
     "vendor/redis/bin/distredis",
     "vendor/redis/examples/basic.rb",
     "vendor/redis/examples/dist_redis.rb",
     "vendor/redis/examples/incr-decr.rb",
     "vendor/redis/examples/list.rb",
     "vendor/redis/examples/pubsub.rb",
     "vendor/redis/examples/sets.rb",
     "vendor/redis/lib/edis.rb",
     "vendor/redis/lib/redis.rb",
     "vendor/redis/lib/redis/client.rb",
     "vendor/redis/lib/redis/dist_redis.rb",
     "vendor/redis/lib/redis/distributed.rb",
     "vendor/redis/lib/redis/hash_ring.rb",
     "vendor/redis/lib/redis/pipeline.rb",
     "vendor/redis/lib/redis/raketasks.rb",
     "vendor/redis/lib/redis/subscribe.rb",
     "vendor/redis/profile.rb",
     "vendor/redis/tasks/redis.tasks.rb",
     "vendor/redis/test/db/.gitignore",
     "vendor/redis/test/distributed_test.rb",
     "vendor/redis/test/redis_test.rb",
     "vendor/redis/test/test.conf",
     "vendor/redis/test/test_helper.rb"
  ]
  s.homepage = %q{http://github.com/cyx/lunar}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  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_index.rb",
     "test/test_lunar_scoring.rb",
     "test/test_lunar_search.rb",
     "test/test_sets.rb",
     "examples/ohm.rb"
  ]

  if s.respond_to? :specification_version then
    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"])
    else
      s.add_dependency(%q<contest>, [">= 0"])
    end
  else
    s.add_dependency(%q<contest>, [">= 0"])
  end
end