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
|
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'chef/version'
Gem::Specification.new do |s|
s.name = 'chef'
s.version = Chef::VERSION
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
s.extra_rdoc_files = ["README.rdoc", "LICENSE" ]
s.summary = "A systems integration framework, built to bring the benefits of configuration management to your entire infrastructure."
s.description = s.summary
s.author = "Adam Jacob"
s.email = "adam@opscode.com"
s.homepage = "http://wiki.opscode.com/display/chef"
s.add_dependency "mixlib-config", ">= 1.1.2"
s.add_dependency "mixlib-cli", ">= 1.1.0"
s.add_dependency "mixlib-log", ">= 1.3.0"
s.add_dependency "mixlib-authentication", ">= 1.1.0"
s.add_dependency "ohai", ">= 0.6.0"
s.add_dependency "rest-client", ">= 1.0.4", "< 1.7.0"
s.add_dependency "bunny", ">= 0.6.0"
s.add_dependency "json", ">= 1.4.4", "<= 1.5.2"
s.add_dependency "treetop", "~> 1.4.9"
s.add_dependency "net-ssh", "~> 2.1.3"
s.add_dependency "net-ssh-multi", "~> 1.0.1"
%w{erubis moneta highline uuidtools}.each { |gem| s.add_dependency gem }
s.bindir = "bin"
s.executables = %w( chef-client chef-solo knife shef )
s.require_path = 'lib'
s.files = %w(LICENSE README.rdoc) + Dir.glob("{distro,lib}/**/*")
end
|