-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcloudstack-nagios.gemspec
31 lines (27 loc) · 1.34 KB
/
cloudstack-nagios.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'cloudstack-nagios/version'
Gem::Specification.new do |gem|
gem.name = "cloudstack-nagios"
gem.version = CloudstackNagios::VERSION
gem.authors = ["Nik Wolfgramm", "Martin Kolly", "René Moser", "Matthias Hänni", "Michael Pospiezsynski"]
gem.email = ["[email protected]"]
gem.description = %q{cloudstack-nagios generates nagios configuration and checks for monitoring CloudStack with nagios.}
gem.summary = %q{cloudstack-nagios CloudStack monitoring tools for nagios}
gem.homepage = "https://github.com/swisstxt/cloudstack-nagios"
gem.license = 'MIT'
gem.required_ruby_version = '>= 2.0'
gem.files = `git ls-files`.split($/)
gem.executables = ['cs-nagios', 'cloudstack-nagios']
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.rdoc_options = %w[--line-numbers --inline-source]
gem.add_development_dependency('rdoc')
gem.add_development_dependency('rake', '~> 12.0')
gem.add_dependency('cloudstack_client', '~> 1.5')
gem.add_dependency('thor', '~> 0.20.0')
gem.add_dependency('erubis', '~> 2.7')
gem.add_dependency('sshkit', '~> 1.18.0')
gem.add_dependency('highline', '~> 2.0')
end