forked from ream88/mongoid-versioning
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmongoid-versioning.gemspec
More file actions
21 lines (18 loc) · 859 Bytes
/
Copy pathmongoid-versioning.gemspec
File metadata and controls
21 lines (18 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$: << 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 = 'Mario Uher'
gem.email = 'uher.mario@gmail.com'
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.files = `git ls-files`.split("\n")
gem.require_path = 'lib'
gem.add_dependency 'activesupport'
gem.add_dependency 'mongoid', '~> 4.0.0'
gem.add_development_dependency 'mongoid-paranoia', '1.0.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '~> 3'
end