-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmanageiq-api-client.gemspec
40 lines (34 loc) · 1.61 KB
/
manageiq-api-client.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'manageiq/api/client/version'
Gem::Specification.new do |spec|
spec.name = "manageiq-api-client"
spec.version = ManageIQ::API::Client::VERSION
spec.authors = ["Alberto Bellotti", "Jason Frey"]
spec.email = ["abellott@redhat.com", "jfrey@redhat.com"]
spec.summary = "ManageIQ API Client"
spec.description = %q{
This gem provides Ruby access to the ManageIQ API by exposing the ManageIQ
collections, resources and related actions as Ruby objects and equivalent methods.
}
spec.homepage = "http://github.com/ManageIQ/manageiq-api-client"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
spec.files += %w(README.md LICENSE.txt)
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 3.0'
spec.add_dependency "activesupport", ">= 7.0", "<8.0"
spec.add_dependency "faraday", ">= 1.0", "< 3.0"
spec.add_dependency "faraday-follow_redirects"
spec.add_dependency "json", "~> 2.3"
spec.add_dependency "query_relation"
spec.add_development_dependency "bundler"
spec.add_development_dependency "manageiq-style"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "simplecov", ">= 0.21.2"
spec.add_development_dependency "webmock"
end