-
Notifications
You must be signed in to change notification settings - Fork 113
/
mongoid_search.gemspec
31 lines (25 loc) · 1.03 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
30
31
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift lib unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |s|
s.name = 'mongoid_search'
s.version = '0.4.0'
s.authors = ['Mauricio Zaffari']
s.email = ['mauricio@papodenerd.net']
s.homepage = 'https://github.com/mongoid/mongoid_search'
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.required_ruby_version = '>= 2.7'
s.platform = 'ruby'
s.add_dependency('fast-stemmer', ['~> 1.0.0'])
s.add_dependency('mongoid', ['>= 5.0.0'])
s.add_development_dependency('database_cleaner-mongoid', ['>= 2.0.0'])
s.add_development_dependency('mongoid-compatibility')
s.add_development_dependency('rake', ['>= 12.3.3'])
s.add_development_dependency('rspec', ['~> 3.1'])
s.require_path = 'lib'
s.files = Dir['lib/**/*', 'tasks/*.rake'] + %w[LICENSE README.md Rakefile]
s.test_files = Dir.glob('spec/**/*')
end