Sha256: d532e67680fed2fd4bb4b3d8372e92718a891e3284d81d637aef1b11cd835d8c
Contents?: true
Size: 1.88 KB
Versions: 20
Compression:
Stored size: 1.88 KB
Contents
# # Author:: Daniel Deleo (<dan@opscode.com>) # Copyright:: Copyright (c) 2010 Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require File.dirname(__FILE__) + '/lib/chef-server/version' require 'rake/gempackagetask' GEM_NAME = "chef-server" AUTHOR = "Opscode" EMAIL = "chef@opscode.com" HOMEPAGE = "http://wiki.opscode.com/display/chef" SUMMARY = "A meta-gem to install all server components of the Chef configuration management system" spec = Gem::Specification.new do |s| s.name = GEM_NAME s.version = ChefServer::VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true s.extra_rdoc_files = ["README.rdoc", "LICENSE" ] s.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.add_dependency "chef-server-api", "= #{ChefServer::VERSION}" s.add_dependency "chef-server-webui", "= #{ChefServer::VERSION}" s.add_dependency "chef-solr", "= #{ChefServer::VERSION}" s.files = %w(LICENSE README.rdoc Rakefile lib/chef-server.rb lib/chef-server/version.rb) s end desc "Install the gem" task :install => :package do sh %{gem install pkg/#{GEM_NAME}-#{ChefServer::VERSION} --no-rdoc --no-ri} end desc "Uninstall the gem" task :uninstall do sh %{gem uninstall #{GEM_NAME} -x -v #{ChefServer::VERSION} } end Rake::GemPackageTask.new(spec) do |pkg| pkg.gem_spec = spec end
Version data entries
20 entries across 20 versions & 1 rubygems