-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkitchen_hooks.gemspec
36 lines (33 loc) · 1.36 KB
/
kitchen_hooks.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
33
34
35
36
# -*- encoding: utf-8 -*-
$:.push File.expand_path(File.join('..', 'lib'), __FILE__)
require 'kitchen_hooks/metadata'
require 'find'
Gem::Specification.new do |s|
s.name = 'kitchen_hooks'
s.version = KitchenHooks::VERSION
s.platform = Gem::Platform::RUBY
s.author = KitchenHooks::AUTHOR
s.email = KitchenHooks::EMAIL
s.summary = KitchenHooks::SUMMARY
s.description = KitchenHooks::SUMMARY + '.'
s.homepage = KitchenHooks::HOMEPAGE
s.license = KitchenHooks::LICENSE
s.add_runtime_dependency 'hipchat', '~> 1.4.0'
s.add_runtime_dependency 'daybreak', '~> 0.3'
s.add_runtime_dependency 'retryable', '~> 2'
s.add_runtime_dependency 'berkshelf', '~> 4'
s.add_runtime_dependency 'thor', '~> 0'
s.add_runtime_dependency 'git', '~> 1.2'
s.add_runtime_dependency 'sinatra', '~> 1.4'
s.add_runtime_dependency 'ridley', '~> 4.1'
s.add_runtime_dependency 'chef', '~> 12'
s.add_runtime_dependency 'faraday', '= 0.9.1'
s.add_runtime_dependency 'eventmachine', '= 1.0.4'
s.add_runtime_dependency 'thin', '= 1.6.3'
s.add_runtime_dependency 'pmap', '~> 1'
s.add_runtime_dependency 'json', '~> 1.8'
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- test/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File::basename(f) }
s.require_paths = %w[ lib ]
end