-
Notifications
You must be signed in to change notification settings - Fork 177
/
mongoid-rspec.gemspec
36 lines (29 loc) · 1.29 KB
/
mongoid-rspec.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
32
33
34
35
36
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'mongoid/rspec/version'
Gem::Specification.new do |s|
s.name = 'mongoid-rspec'
s.version = Mongoid::RSpec::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Evan Sagge', 'Rodrigo Pinto']
s.email = 'evansagge@gmail.com contato@rodrigopinto.me'
s.homepage = 'http://github.com/mongoid-rspec/mongoid-rspec'
s.summary = 'RSpec matchers for Mongoid'
s.description = 'RSpec matches for Mongoid models, including association and validation matchers.'
s.license = 'MIT'
s.required_ruby_version = '>= 2.6'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'mongoid-rspec'
s.metadata['rubygems_mfa_required'] = 'true'
s.add_development_dependency 'appraisal', '~> 2.0'
s.add_development_dependency 'mongoid-danger', '~> 0.2'
s.add_development_dependency 'pry'
s.add_development_dependency 'rails'
s.add_development_dependency 'rspec'
s.add_development_dependency 'rubocop', '~> 1.36.0'
s.add_dependency 'mongoid', '>= 3.0', '< 10.0'
s.add_dependency 'mongoid-compatibility', '>= 0.5.1'
s.files = Dir.glob('lib/**/*') + %w[LICENSE README.md Rakefile]
s.require_path = 'lib'
end