-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcqm-models.gemspec
32 lines (27 loc) · 1.36 KB
/
cqm-models.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
Gem::Specification.new do |spec|
spec.name = 'cqm-models'
spec.version = '4.2.0'
spec.summary = 'Mongo models that correspond to the QDM specification.'
spec.description = 'This library contains auto generated Mongo (Mongoid) models that correspond to the QDM (Quality Data Model) specification.'
spec.homepage = 'https://github.com/projecttacoma/cqm-models'
spec.license = 'Apache-2.0'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.add_development_dependency 'bundle-audit'
spec.add_development_dependency 'byebug', '~> 11.0.1'
spec.add_development_dependency 'codecov'
spec.add_development_dependency 'mongoid', '~> 8'
spec.add_development_dependency 'nokogiri', '>= 1.16.2'
spec.add_development_dependency 'rails', '~> 7.1'
spec.add_development_dependency 'rake', '~> 12.3.3'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 0.63.0'
spec.add_development_dependency 'simplecov'
end