forked from ream88/mongoid-versioning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mongoid-versioning.gemspec
22 lines (19 loc) · 984 Bytes
/
mongoid-versioning.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$LOAD_PATH << File.expand_path('../lib', __FILE__)
require 'mongoid/versioning/version'
Gem::Specification.new do |gem|
gem.name = 'mongoid-versioning'
gem.version = Mongoid::Versioning::VERSION
gem.authors = ['Durran Jordan', 'Mario Uher']
gem.email = ['[email protected]', '[email protected]']
gem.homepage = 'https://github.com/haihappen/mongoid-versioning'
gem.summary = 'Extraction of mongoid-versioning into its own gem.'
gem.description = 'Mongoid supports simple versioning through inclusion of the Mongoid::Versioning module.'
gem.licenses = ['MIT']
gem.files = `git ls-files`.split("\n")
gem.require_path = 'lib'
gem.add_dependency 'activesupport', '>= 4.0'
gem.add_dependency 'mongoid', '>= 4.0.0', '< 7.0.0'
gem.add_development_dependency 'mongoid-paranoia', '>= 1.1.0', '< 3.0.0'
gem.add_development_dependency 'rake', '~> 10.0'
gem.add_development_dependency 'rspec', '~> 3'
end