Sha256: 7a82e322816d5a33a064dee842f9adb61ad8e23314b0bd09aa76753a5e9bfcda
Contents?: true
Size: 1.13 KB
Versions: 25
Compression:
Stored size: 1.13 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 'rubygems/package_task' GEM_NAME = "chef-server" spec = eval(File.read("chef-server.gemspec")) 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 Gem::PackageTask.new(spec) do |pkg| pkg.gem_spec = spec end
Version data entries
25 entries across 25 versions & 1 rubygems