$:.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.extra_rdoc_files = ["README.md", "CONTRIBUTING.md", "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", "~> 2.0" s.add_dependency "mixlib-cli", "~> 1.4" s.add_dependency "mixlib-log", "~> 1.3" s.add_dependency "mixlib-authentication", "~> 1.3" s.add_dependency "mixlib-shellout", "~> 1.4" s.add_dependency "ohai", "~> 7.4" # Lock down rest-client to avoid pulling in rdoc and breaking Omnibus builds # on Solaris. See the original issue for more details: # https://github.com/opscode/chef/issues/1211 s.add_dependency "rest-client", ">= 1.0.4", "<= 1.6.7" # rest-client has an unbounded dependency on mime-types. # mime-types 2.0 removes support for ruby 1.8.7 (gemspec requires ruby # 1.9.2+), so we have to add an additional pin. 1.16 is chosen just becuase # it's the version I had when I tested. s.add_dependency "mime-types", "~> 1.16" s.add_dependency "ffi-yajl", "~> 1.2" s.add_dependency "net-ssh" #, "~> 2.6" s.add_dependency "net-ssh-multi", "~> 1.1" # CHEF-3027: The knife-cloud plugins require newer features from highline, core chef should not. s.add_dependency "highline", "~> 1.6", ">= 1.6.9" s.add_dependency "erubis", "~> 2.7" s.add_dependency "diff-lcs", "~> 1.2", ">= 1.2.4" s.add_dependency "chef-zero", "~> 2.2", ">= 2.2.1" s.add_dependency "pry", "~> 0.9" s.add_dependency 'plist', '~> 3.1.0' s.add_development_dependency "rack" # Rake 10.2 drops Ruby 1.8 support s.add_development_dependency "rake", "~> 10.1.0" # rspec_junit_formatter 0.2.0 drops ruby 1.8.7 support s.add_development_dependency "rspec_junit_formatter", "~> 0.1.0" %w(rspec-core rspec-expectations rspec-mocks).each { |gem| s.add_development_dependency gem, "~> 2.14.0" } s.bindir = "bin" # chef-service-manager is a windows only executable. # However gemspec doesn't give us a way to have this executable only # on windows. So we're including this in all platforms. s.executables = %w( chef-client chef-solo knife chef-shell shef chef-apply chef-service-manager ) s.require_path = 'lib' s.files = %w(Rakefile LICENSE README.md CONTRIBUTING.md) + Dir.glob("{distro,lib,tasks,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) } end