forked from inferno-framework/inferno-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinferno_core.gemspec
72 lines (69 loc) · 3.36 KB
/
inferno_core.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# frozen_string_literal: true
require_relative 'lib/inferno/version'
Gem::Specification.new do |spec|
spec.name = 'inferno_core'
spec.version = Inferno::VERSION
spec.authors = ['Stephen MacVicar', 'Robert Scanlon', 'Chase Zhou']
spec.email = ['inferno@groups.mitre.org']
spec.summary = 'Inferno Core is an open source tool for testing data exchanges enabled by the FHIR standand'
spec.description = 'Inferno Core is an open source tool for testing data exchanges enabled by the FHIR standand'
spec.homepage = 'https://github.com/inferno-framework/inferno-core'
spec.license = 'Apache-2.0'
spec.add_runtime_dependency 'activesupport', '~> 6.1'
spec.add_runtime_dependency 'blueprinter', '0.25.2'
spec.add_runtime_dependency 'dotenv', '~> 2.7'
spec.add_runtime_dependency 'dry-configurable', '0.13.0'
spec.add_runtime_dependency 'dry-container', '0.9.0'
spec.add_runtime_dependency 'dry-core', '0.8.1'
spec.add_runtime_dependency 'dry-system', '0.20.0'
spec.add_runtime_dependency 'faraday', '~> 1.2'
spec.add_runtime_dependency 'faraday_middleware', '~> 1.2'
spec.add_runtime_dependency 'fhir_client', '>= 5.0.3'
spec.add_runtime_dependency 'fhir_models', '>= 4.2.2'
spec.add_runtime_dependency 'hanami-controller', '2.0.0.beta1'
spec.add_runtime_dependency 'hanami-router', '2.0.0'
spec.add_runtime_dependency 'oj', '3.11.0'
spec.add_runtime_dependency 'pry'
spec.add_runtime_dependency 'pry-byebug'
spec.add_runtime_dependency 'puma', '~> 5.3'
spec.add_runtime_dependency 'rake', '~> 13.0'
spec.add_runtime_dependency 'sequel', '~> 5.42.0'
spec.add_runtime_dependency 'sidekiq', '~> 6.5.6'
spec.add_runtime_dependency 'sqlite3', '~> 1.4'
spec.add_runtime_dependency 'thor', '~> 1.2.1'
spec.add_runtime_dependency 'tty-markdown', '~> 0.7.1'
spec.add_development_dependency 'codecov', '0.5.2'
spec.add_development_dependency 'database_cleaner-sequel', '~> 1.8'
spec.add_development_dependency 'factory_bot', '~> 6.1'
spec.add_development_dependency 'rack-test', '~> 1.1'
spec.add_development_dependency 'rspec', '~> 3.10'
spec.add_development_dependency 'rubocop', '~> 1.9'
spec.add_development_dependency 'rubocop-rake', '0.5.1'
spec.add_development_dependency 'rubocop-rspec', '~> 2.1'
spec.add_development_dependency 'rubocop-sequel', '0.1.0'
spec.add_development_dependency 'simplecov', '0.21.2'
spec.add_development_dependency 'webmock', '~> 3.11'
spec.add_development_dependency 'yard', '0.9.26'
spec.required_ruby_version = Gem::Requirement.new('~> 3.1.2')
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/inferno-framework/inferno-core'
spec.metadata['changelog_uri'] = 'https://github.com/inferno-framework/inferno-core/blob/main/CHANGELOG.md'
spec.files = [
'lib/inferno.rb',
'LICENSE',
Dir['lib/inferno/**/*.rb'],
Dir['lib/inferno/**/*.erb'],
'bin/inferno',
Dir['lib/inferno/public/*.png'],
Dir['lib/inferno/public/*.ico'],
Dir['lib/inferno/public/*.js'],
'lib/inferno/public/bundle.js.LICENSE.txt',
'lib/inferno/public/assets.json',
'spec/support/factory_bot.rb',
Dir['spec/factories/**/*.rb'],
Dir['spec/fixtures/**/*.rb']
].flatten
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib', 'spec']
end