-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloudscopes.gemspec
29 lines (25 loc) · 1.29 KB
/
cloudscopes.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 'cloudscopes/version'
Gem::Specification.new do |spec|
spec.name = "cloudscopes"
spec.version = Cloudscopes::VERSION
spec.authors = ["Oded Arbel"]
spec.email = ["oded@geek.co.il"]
spec.summary = %q{Ruby gem to report system statistics to web based monitoring services such as CloudWatch}
spec.description = %q{Ruby gem to report system statistics to web based monitoring services such as CloudWatch}
spec.homepage = "http://github.com/guss77/cloudscopes"
spec.license = "GPL-3.0"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.extra_rdoc_files = ["README.md"]
spec.add_dependency 'aws-sdk', '~> 1.40'
# spec.add_dependency 'redis', '~> 3.0' # we depend on redis only if the user uses the redis support. No reason to force it here
spec.add_dependency 'ffi', '~> 1.9', '>= 1.9.3'
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rake", '~> 0'
spec.add_development_dependency "rspec", '~> 3'
end