-
Notifications
You must be signed in to change notification settings - Fork 25
/
insights-api-common.gemspec
49 lines (40 loc) · 2.28 KB
/
insights-api-common.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
$:.push File.expand_path("lib", __dir__)
require "insights/api/common/version"
Gem::Specification.new do |spec|
spec.name = "insights-api-common"
spec.version = Insights::API::Common::VERSION
spec.authors = ["Insights Authors"]
spec.summary = %q{Common Utilites for Insights microservices}
spec.description = %q{Header, Encryption, RBAC, Serialization, Pagination and other common behavior for Insights microservices built with Rails}
spec.homepage = "https://github.com/RedHatInsights/insights-api-common-rails.git"
spec.licenses = ["Apache-2.0"]
spec.files = Dir["{app,config,db,lib,spec/support}/**/*", "LICENSE.txt", "Rakefile", "README.md"]
spec.add_runtime_dependency "acts_as_tenant"
spec.add_runtime_dependency "manageiq-password", "~>0.1"
spec.add_runtime_dependency "pg", "> 0"
spec.add_runtime_dependency "rails", ">= 5.2.2.1", "~> 5.2.2"
# For Insights::API::Common::Logging
spec.add_runtime_dependency "insights-loggers-ruby", "~> 0.1.10"
spec.add_runtime_dependency "manageiq-loggers", "~> 0.4.0"
# For Insights::API::Common::Metrics
spec.add_runtime_dependency "prometheus_exporter", "~> 0.4.5"
# For Insights::API::Common::OpenApi
spec.add_runtime_dependency "more_core_extensions"
spec.add_runtime_dependency "openapi_parser", "~> 0.10.0"
spec.add_runtime_dependency "insights-rbac-api-client", "~> 1.0"
# For Insights::API::Common::GraphQL, pinning for now due to breaking change brought in 1.12.0
spec.add_runtime_dependency "graphql", "1.11.7"
spec.add_runtime_dependency "graphql-batch", "~> 0.4"
spec.add_runtime_dependency "graphql-preload", "~> 2.0", "< 2.1"
spec.add_runtime_dependency "query_relation"
spec.add_development_dependency "factory_bot"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "rubocop", "~> 1.0.0"
spec.add_development_dependency "rubocop-performance", "~>1.8"
spec.add_development_dependency "rubocop-rails", "~> 2.8"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rspec-mocks"
spec.add_development_dependency "rspec-rails", "~> 3.8"
spec.add_development_dependency "simplecov", '~> 0.17.1'
spec.add_development_dependency "webmock"
end