forked from thejandroman/livestatus-simple
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlivestatus-simple.gemspec
27 lines (23 loc) · 1.08 KB
/
livestatus-simple.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "livestatus-simple/version"
Gem::Specification.new do |s|
s.name = "livestatus-simple"
s.version = LivestatusSimple::VERSION
s.authors = ["Wolfgang Barth", "Lawrence Matacena"]
s.email = ["wob@swobspace.net", "lawrence.matacena@gmail.com"]
s.homepage = "https://github.com/guaguasi/livestatus-simple"
s.summary = %q{LivestatusSimple is a simple Ruby library to control Nagios via MK Livestatus.}
s.description = %q{LivestatusSimple is a simple Ruby library to control Nagios via MK Livestatus.}
s.license = 'MIT'
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"]
s.add_runtime_dependency "activesupport"
s.add_runtime_dependency "i18n"
s.add_runtime_dependency "yajl-ruby"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "dotenv"
end