-
Notifications
You must be signed in to change notification settings - Fork 45
/
mongoid-autoinc.gemspec
26 lines (23 loc) · 1.03 KB
/
mongoid-autoinc.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'autoinc/version'
Gem::Specification.new do |s|
s.name = 'mongoid-autoinc'
s.version = Mongoid::Autoinc::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Robert Beekman', 'Steven Weller', 'Jacob Vosmaer']
s.homepage = 'https://github.com/suweller/mongoid-autoinc'
s.summary = %q(Add auto incrementing fields to mongoid documents)
s.description = %q(Think auto incrementing field from SQL for mongoid.)
s.files = Dir.glob("lib/**/*") + %w(README.md)
s.license = 'MIT'
s.executables = s.files.grep(%r(^bin/)) { |f| File.basename(f) }
s.test_files = s.files.grep(%r(^(test|spec|features)/))
s.require_path = 'lib'
s.add_dependency 'mongoid', ['>= 6.0', '< 9.0']
s.add_development_dependency 'rake'
s.add_development_dependency 'foreman'
s.add_development_dependency 'rspec'
s.add_development_dependency 'pry'
end