-
Notifications
You must be signed in to change notification settings - Fork 128
/
zabbixapi.gemspec
29 lines (21 loc) · 976 Bytes
/
zabbixapi.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
# 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', '~> 2.0'
spec.add_dependency 'json', '~> 2.0'
spec.add_development_dependency 'bundler'
spec.name = 'zabbixapi'
spec.version = ZabbixApi::VERSION
spec.authors = ['Vasiliev D.V.', 'Ivan Evtuhovich']
spec.email = ['[email protected]', '[email protected]']
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/express42/zabbixapi'
spec.licenses = 'MIT'
spec.rubyforge_project = 'zabbixapi'
spec.files = ['CHANGELOG.md', 'LICENSE.md', 'README.md', 'zabbixapi.gemspec'] + Dir['lib/**/*.rb']
spec.require_paths = 'lib'
spec.required_ruby_version = '>= 2.0.0'
end