Sha256: 352c83b0eb881a6d659c2aa29fa5f890e117366555bf14aa70051c6a98a1a31f
Contents?: true
Size: 1.17 KB
Versions: 12
Compression:
Stored size: 1.17 KB
Contents
# # Rakefile for chef-rvm # # Author:: Fletcher Nichol (<fnichol@nichol.ca>) # Copyright:: Copyright (c) 2011 Fletcher Nichol # 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. # # The top of the repository checkout TOPDIR = File.expand_path(File.join(File.dirname(__FILE__))) desc "Bundle a single cookbook for distribution" task :bundle_cookbook, :cookbook, :tag do |t, args| tarball_name = "#{args.cookbook}.tar.gz" tarball_dir = File.join(TOPDIR, "pkgs") FileUtils.rm_rf(tarball_dir) FileUtils.mkdir_p(tarball_dir) sh <<-CMD git archive --prefix=#{args.cookbook}/ #{args.tag} | \ gzip > #{File.join(tarball_dir, tarball_name)} CMD end
Version data entries
12 entries across 12 versions & 2 rubygems