forked from RedHatInsights/insights-api-common-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanageiq-api-common.gemspec
33 lines (26 loc) · 1.31 KB
/
manageiq-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
$:.push File.expand_path("lib", __dir__)
require "manageiq/api/common/version"
Gem::Specification.new do |spec|
spec.name = "manageiq-api-common"
spec.version = ManageIQ::API::Common::VERSION
spec.authors = ["ManageIQ Authors"]
spec.summary = %q{Common Utilites for Microservices}
spec.description = %q{Header, Encryption, RBAC, Serialization Common Behavior for microservices}
spec.homepage = "https://github.com/ManageIQ/manageiq-api-common.git"
spec.licenses = ["Apache-2.0"]
spec.files = Dir["{app,config,db,lib}/**/*", "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.1.1", "~> 5.2"
# For ManageIQ::API::Common::Logging
spec.add_runtime_dependency "manageiq-loggers", "~> 0.1"
# For ManageIQ::API::Common::Metrics
spec.add_runtime_dependency "prometheus-client", "~> 0.8.0"
spec.add_development_dependency "factory_bot"
spec.add_development_dependency "rake", "~> 10.0"
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"
end