-
Notifications
You must be signed in to change notification settings - Fork 22
/
netbox-client-ruby.gemspec
30 lines (23 loc) · 1.05 KB
/
netbox-client-ruby.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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = 'netbox-client-ruby'
spec.version = `git describe --tags --match="v[0-9]*" --abbrev=0`.strip.delete_prefix("v")
spec.summary = 'A read/write client for Netbox v2.'
spec.homepage = 'https://github.com/ninech/netbox-client-ruby'
spec.license = 'MIT'
spec.authors = ['Nine Internet Solutions AG']
spec.email = ['[email protected]']
if spec.respond_to?(:metadata)
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
end
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.required_ruby_version = '>= 2.7.0'
spec.add_runtime_dependency 'dry-configurable', '~> 1'
spec.add_runtime_dependency 'faraday', '>= 0.11.0', '< 3'
spec.add_runtime_dependency 'faraday-detailed_logger', '~> 2.1'
spec.add_runtime_dependency 'ipaddress', '~> 0.8', '>= 0.8.3'
spec.add_runtime_dependency 'openssl', '>= 2.0.5'
spec.add_runtime_dependency 'zeitwerk', '~> 2.6.0'
end