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

Version Path
chef-server-10.30.4 Rakefile
chef-server-10.30.2 Rakefile
chef-server-10.30.2.rc.0 Rakefile
chef-server-10.30.0.rc.2 Rakefile
chef-server-10.30.0.rc.1 Rakefile
chef-server-10.30.0.rc.0 Rakefile
chef-server-10.28.0 Rakefile
chef-server-10.28.0.rc.0 Rakefile
chef-server-10.26.0 Rakefile
chef-server-10.26.0.beta.0 Rakefile
chef-server-10.24.4 Rakefile
chef-server-10.24.0 Rakefile
chef-server-10.24.0.rc.2 Rakefile
chef-server-10.24.0.rc.1 Rakefile
chef-server-10.24.0.rc.0 Rakefile
chef-server-10.22.0 Rakefile
chef-server-10.22.0.rc.0 Rakefile
chef-server-10.20.0 Rakefile
chef-server-10.18.4.rc.2 Rakefile
chef-server-10.18.4.rc.1 Rakefile