forked from ewilhelm/panoptimon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpanoptimon.gemspec
29 lines (24 loc) · 1.03 KB
/
panoptimon.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/panoptimon/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Eric Wilhelm"]
gem.description = %q{The All-Seeing System Monitor Daemon}
gem.summary = %q{Panoptimon collects and routes system metrics.}
gem.email = "[email protected]"
gem.homepage = "https://github.com/synthesist/panoptimon"
gem.license = 'bsd' # The (three-clause) BSD License
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "panoptimon"
gem.require_paths = ["lib"]
gem.version = Panoptimon::VERSION
gem.required_ruby_version = '>= 1.9'
# Core gem dependencies
gem.add_dependency 'eventmachine', '~> 1.0.0'
gem.add_dependency 'daemons'
gem.add_dependency 'json'
gem.add_dependency 'thin', '~> 1.5.0'
# Plugin gem dependencies
gem.add_dependency 'riemann-client'
end