forked from randywallace/zabbix-cloudwatch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zabbix-cloudwatch.gemspec
31 lines (26 loc) · 1.13 KB
/
zabbix-cloudwatch.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
$:.push File.expand_path("../lib", __FILE__)
require "zabbix-cloudwatch/version"
Gem::Specification.new do |s|
s.name = "zabbix-cloudwatch"
s.version = ZabbixCloudwatch::VERSION
s.platform = Gem::Platform::RUBY
s.license = "MIT"
s.authors = ["Randy D. Wallace Jr."]
s.email = ["[email protected]"]
s.homepage = "http://github.com/randywallace/zabbix-cloudwatch"
s.summary = %q{A library for getting cloudwatch metrics into Zabbix}
s.description = <<EOF
A library for getting cloudwatch metrics into Zabbix
Please see http://github.com/randywallace/zabbix-cloudwatch for more details
EOF
s.add_runtime_dependency "aws-sdk", "~> 1.49.0"
s.add_runtime_dependency "getopt", "~> 1.4.1"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "mime-types", "~> 1.0"
s.add_development_dependency "coveralls"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end