forked from mongoid/mongoid_search
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mongoid_search.gemspec
26 lines (22 loc) · 973 Bytes
/
mongoid_search.gemspec
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
# encoding: utf-8
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
Gem::Specification.new do |s|
s.name = "mongoid_search"
s.version = "0.3.2"
s.authors = ["Mauricio Zaffari"]
s.email =["[email protected]"]
s.homepage = "http://www.papodenerd.net/mongoid-search-full-text-search-for-your-mongoid-models/"
s.summary = "Search implementation for Mongoid ORM"
s.description = "Simple full text search implementation."
s.required_rubygems_version = ">= 1.3.6"
s.platform = "ruby"
s.add_dependency(*["mongoid", ">= 4.0.0.alpha1", "< 5.0"])
s.add_dependency("fast-stemmer", ["~> 1.0.0"])
s.add_development_dependency("database_cleaner", [">= 0.8.0"])
s.add_development_dependency("rake", ["~> 0.8.7"])
s.add_development_dependency("rspec", ["~> 2.4"])
s.require_path = "lib"
s.files = Dir["lib/**/*", "tasks/*.rake"] + %w(LICENSE README.md Rakefile VERSION)
s.test_files = Dir.glob("spec/**/*")
end