-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongocore.gemspec
22 lines (19 loc) · 934 Bytes
/
mongocore.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = 'mongocore'
s.version = '0.5.1'
s.date = '2018-01-24'
s.summary = "MongoDB ORM implementation on top of the Ruby MongoDB driver"
s.description = "Does validations, associations, scopes, filters, pagination, counter cache, request cache, and nested queries. Using a YAML schema file, which supports default values, data types, and security levels for each key."
s.authors = ['Fugroup Limited']
s.email = '[email protected]'
s.add_runtime_dependency 'mongo', ['>= 2.2.0', '< 2.5']
s.add_runtime_dependency 'request_store', '>= 0'
s.add_runtime_dependency 'activesupport', '>= 0'
s.add_development_dependency 'futest', '>= 0'
s.homepage = 'https://github.com/fugroup/mongocore'
s.license = 'MIT'
s.require_paths = ['lib']
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
end