forked from ElMassimo/mongoid_includes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmongoid_includes.gemspec
26 lines (20 loc) · 931 Bytes
/
mongoid_includes.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'mongoid/includes/version'
Gem::Specification.new do |s|
s.name = 'mongoid_includes'
s.version = Mongoid::Includes::VERSION
s.licenses = ['MIT']
s.summary = 'Improved eager loading support for Mongoid.'
s.description = 'Mongoid::Includes improves eager loading in Mongoid, supporting polymorphic associations, and up to two-levels of eager loading.'
s.authors = ['Máximo Mussini']
s.email = ['[email protected]']
s.homepage = %q{https://github.com/ElMassimo/mongoid_includes}
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>=2.0.0'
s.rdoc_options = ['--charset=UTF-8']
s.require_path = 'lib'
s.files = Dir.glob('lib/**/*') + %w(CHANGELOG.md LICENSE.txt README.md Rakefile)
s.test_files = Dir.glob('spec/**/*')
s.add_runtime_dependency 'mongoid', ['>= 7.0.10', '< 9.0.0']
end