forked from etsy/nagios-herald
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nagios-herald.gemspec
31 lines (25 loc) · 1.33 KB
/
nagios-herald.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
($LOAD_PATH << File.expand_path("../lib", __FILE__)).uniq!
require "nagios-herald/version"
Gem::Specification.new do |spec|
spec.name = 'nagios-herald'
spec.summary = "A project that aims to make it easy to provide context in Nagios alerts."
spec.version = NagiosHerald::VERSION
spec.authors = ['Ryan Frantz', 'Nassim Kammah']
spec.email = ['[email protected]', '[email protected]']
spec.homepage = "https://github.com/etsy/nagios-herald"
spec.license = "MIT"
spec.files = `git ls-files`.split("\n")
spec.test_files = Dir["tests/**/*_test.rb"]
#spec.executables = ["draw_stack_bars", "dump_nagios_env.sh", "get_ganglia_graph", "get_graph", "notify-by-handler", "splunk_alert_frequency"]
spec.executables = ["nagios-herald"]
spec.required_ruby_version = '>=1.9.2'
spec.add_runtime_dependency 'app_conf', '~> 0.4', '>= 0.4.2'
spec.add_runtime_dependency 'choice', '~> 0.1', '>= 0.1.6'
spec.add_runtime_dependency 'mail', '~> 2.5', '>= 2.5.4'
spec.description = <<-DESCRIPTION_END
A project that aims to make it easy to provide context in Nagios alerts.
The project consists of a core notifier script that can be called with a formatter
to tailor the content of the message sent to an operator.
DESCRIPTION_END
spec.post_install_message = "Have fun and write your own formatters!"
end