-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchef-handler-zookeeper.gemspec
30 lines (27 loc) · 1.15 KB
/
chef-handler-zookeeper.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
$:.push File.expand_path("../lib", __FILE__)
require "chef/handler/zookeeper/version"
chef_version = ENV.key?('CHEF_VERSION') ? "#{ENV['CHEF_VERSION']}" : ['>= 0.9.0']
Gem::Specification.new do |s|
s.name = 'chef-handler-zookeeper'
s.version = ::Chef::Handler::ZookeeperHandler::VERSION
s.date = '2013-11-14'
s.platform = Gem::Platform::RUBY
s.summary = 'Send Chef reports to Zookeeper'
s.description = 'Chef report handler to send notifications to Zookeeper about Chef runs.'
s.license = 'Apache-2.0'
s.authors = ['Onddo Labs, SL.']
s.email = '[email protected]'
s.homepage = 'http://onddo.github.io/chef-handler-zookeeper'
s.require_path = 'lib'
s.files = %w(LICENSE README.md) + Dir.glob('lib/**/*')
s.test_files = Dir.glob('{test,spec,features}/*')
s.add_dependency 'zk', '~> 1.9'
s.add_dependency 'erubis'
s.add_development_dependency 'mime-types', '~> 1.0' # 2.0 requires Ruby 1.9
s.add_development_dependency 'chef', chef_version
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest'
s.add_development_dependency 'mocha'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'coveralls'
end