forked from mongoid/mongoid_search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongoid_search.gemspec
29 lines (23 loc) · 1 KB
/
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
27
28
29
lib = File.expand_path('../lib/', __FILE__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'mongoid_search'
s.version = '0.3.5'
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.license = 'MIT'
s.required_rubygems_version = '>= 1.3.6'
s.platform = 'ruby'
s.add_dependency('fast-stemmer', ['~> 1.0.0'])
s.add_dependency('mongoid', ['>= 3.0.0'])
s.add_development_dependency('database_cleaner', ['>= 0.8.0'])
s.add_development_dependency('mongoid-compatibility')
s.add_development_dependency('rake', ['< 11.0'])
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