-
Notifications
You must be signed in to change notification settings - Fork 43
/
cucumber-nagios.gemspec
32 lines (28 loc) · 1.41 KB
/
cucumber-nagios.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
32
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'cucumber/nagios/version'
Gem::Specification.new do |s|
s.name = "cucumber-nagios"
s.platform = Gem::Platform::RUBY
s.version = Cucumber::Nagios::VERSION
s.summary = "Systems testing plugin for Nagios using Cucumber."
s.description = "cucumber-nagios helps you write behavioural tests for your systems and infrastructure, that can be plugged into Nagios."
s.homepage = "http://cucumber-nagios.org/"
s.authors = ["Lindsay Holmwood", "hedgehog"]
s.email = ["lindsay@holmwood.id.au", "hedgehogshiatus@gmail.com"]
s.require_paths = ["lib"]
s.files = `git ls-files`.split(/\r?\n\r?/)
s.executables = s.files.grep(/^bin/) { |f| File.basename(f) }
s.extra_rdoc_files = s.files.grep(/^[A-Z]+(\.md)*$/)
s.add_runtime_dependency "cucumber", "~> 1.1.2"
s.add_runtime_dependency "rspec", ">= 2.5.0"
s.add_runtime_dependency "aruba", ">= 0.3.4"
s.add_runtime_dependency "cuken", ">= 0.1.1"
s.add_runtime_dependency "webrat", ">= 0.7.2"
s.add_runtime_dependency "mechanize", "~> 1.0.0"
s.add_runtime_dependency "templater", ">= 1.0.0"
s.add_runtime_dependency "net-ssh", ">= 2.1.4"
s.add_runtime_dependency "amqp", "~> 0.6.7"
s.add_runtime_dependency "bundler", ">= 1.0.13"
s.add_development_dependency "rake", ">= 0.8.3"
end