-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathzabbixapi.gemspec
More file actions
27 lines (20 loc) · 906 Bytes
/
zabbixapi.gemspec
File metadata and controls
27 lines (20 loc) · 906 Bytes
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zabbixapi/version'
Gem::Specification.new do |spec|
spec.add_dependency 'http', '~> 5.0'
spec.add_dependency 'json', '~> 2.6'
spec.add_development_dependency 'bundler', '>= 2.1'
spec.name = 'zabbixapi'
spec.version = ZabbixApi::VERSION
spec.authors = ['markt.de']
spec.email = ['github-oss-noreply@markt.de']
spec.summary = 'Simple and lightweight ruby module for working with the Zabbix API'
spec.description = 'Allows you to work with zabbix api from ruby.'
spec.homepage = 'https://github.com/markt-de/zabbixapi'
spec.licenses = 'MIT'
spec.files = ['CHANGELOG.md', 'LICENSE.md', 'README.md', 'zabbixapi.gemspec'] + Dir['lib/**/*.rb']
spec.require_paths = 'lib'
spec.required_ruby_version = '>= 2.7.0'
end