Class: Rake::PackageTask
Overview
Create a packaging task that will package the project into distributable files (e.g zip archive or tar files).
The PackageTask will create the following targets:
:package
-
Create all the requested package files.
:clobber_package
-
Delete all the package files. This target is automatically added to the main clobber target.
:repackage
-
Rebuild the package files from scratch, even if they are not out of date.
"package_dir/name-version.tgz"
-
Create a gzipped tar package (if need_tar is true).
"package_dir/name-version.tar.gz"
-
Create a gzipped tar package (if need_tar_gz is true).
"package_dir/name-version.tar.bz2"
-
Create a bzip2’d tar package (if need_tar_bz2 is true).
"package_dir/name-version.zip"
-
Create a zip package archive (if need_zip is true).
Example:
Rake::PackageTask.new("rake", "1.2.3") do |p|
p.need_tar = true
p.package_files.include("lib/**/*.rb")
end
Constant Summary
Constants included from FileUtilsExt
Constants included from FileUtils
FileUtils::LN_SUPPORTED, FileUtils::RUBY
Instance Attribute Summary collapse
-
#name ⇒ Object
Name of the package (from the GEM Spec).
-
#need_tar ⇒ Object
True if a gzipped tar file (tgz) should be produced (default is false).
-
#need_tar_bz2 ⇒ Object
True if a bzip2’d tar file (tar.bz2) should be produced (default is false).
-
#need_tar_gz ⇒ Object
True if a gzipped tar file (tar.gz) should be produced (default is false).
-
#need_tar_xz ⇒ Object
True if a xz’d tar file (tar.xz) should be produced (default is false).
-
#need_zip ⇒ Object
True if a zip file should be produced (default is false).
-
#package_dir ⇒ Object
Directory used to store the package files (default is ‘pkg’).
-
#package_files ⇒ Object
List of files to be included in the package.
-
#tar_command ⇒ Object
Tar command for gzipped or bzip2ed archives.
-
#version ⇒ Object
Version of the package (e.g. ‘1.3.2’).
-
#zip_command ⇒ Object
Zip command for zipped archives.
Instance Method Summary collapse
-
#define ⇒ Object
Create the tasks defined by this task library.
-
#init(name, version) ⇒ Object
Initialization that bypasses the “yield self” and “define” step.
-
#initialize(name = nil, version = nil) {|_self| ... } ⇒ PackageTask
constructor
Create a Package Task with the given name and version.
-
#package_dir_path ⇒ Object
The directory this package will be built in.
-
#package_name ⇒ Object
The name of this package.
-
#tar_bz2_file ⇒ Object
The package name with .tar.bz2 added.
-
#tar_gz_file ⇒ Object
The package name with .tar.gz added.
-
#tar_xz_file ⇒ Object
The package name with .tar.xz added.
-
#tgz_file ⇒ Object
The package name with .tgz added.
-
#zip_file ⇒ Object
The package name with .zip added.
Methods included from FileUtilsExt
#nowrite, #rake_check_options, #rake_merge_option, #rake_output_message, #verbose, #when_writing
Methods included from FileUtils
#ruby, #safe_ln, #sh, #split_all
Methods included from Cloneable
Constructor Details
#initialize(name = nil, version = nil) {|_self| ... } ⇒ PackageTask
Create a Package Task with the given name and version. Use :noversion
as the version to build a package without a version or to provide a fully-versioned package name.
85 86 87 88 89 |
# File 'lib/rake/packagetask.rb', line 85 def initialize(name=nil, version=nil) init(name, version) yield self if block_given? define unless name.nil? end |
Instance Attribute Details
#name ⇒ Object
Name of the package (from the GEM Spec).
46 47 48 |
# File 'lib/rake/packagetask.rb', line 46 def name @name end |
#need_tar ⇒ Object
True if a gzipped tar file (tgz) should be produced (default is false).
56 57 58 |
# File 'lib/rake/packagetask.rb', line 56 def need_tar @need_tar end |
#need_tar_bz2 ⇒ Object
True if a bzip2’d tar file (tar.bz2) should be produced (default is false).
64 65 66 |
# File 'lib/rake/packagetask.rb', line 64 def need_tar_bz2 @need_tar_bz2 end |
#need_tar_gz ⇒ Object
True if a gzipped tar file (tar.gz) should be produced (default is false).
60 61 62 |
# File 'lib/rake/packagetask.rb', line 60 def need_tar_gz @need_tar_gz end |
#need_tar_xz ⇒ Object
True if a xz’d tar file (tar.xz) should be produced (default is false)
67 68 69 |
# File 'lib/rake/packagetask.rb', line 67 def need_tar_xz @need_tar_xz end |
#need_zip ⇒ Object
True if a zip file should be produced (default is false)
70 71 72 |
# File 'lib/rake/packagetask.rb', line 70 def need_zip @need_zip end |
#package_dir ⇒ Object
Directory used to store the package files (default is ‘pkg’).
52 53 54 |
# File 'lib/rake/packagetask.rb', line 52 def package_dir @package_dir end |
#package_files ⇒ Object
List of files to be included in the package.
73 74 75 |
# File 'lib/rake/packagetask.rb', line 73 def package_files @package_files end |
#tar_command ⇒ Object
Tar command for gzipped or bzip2ed archives. The default is ‘tar’.
76 77 78 |
# File 'lib/rake/packagetask.rb', line 76 def tar_command @tar_command end |
#version ⇒ Object
Version of the package (e.g. ‘1.3.2’).
49 50 51 |
# File 'lib/rake/packagetask.rb', line 49 def version @version end |
#zip_command ⇒ Object
Zip command for zipped archives. The default is ‘zip’.
79 80 81 |
# File 'lib/rake/packagetask.rb', line 79 def zip_command @zip_command end |
Instance Method Details
#define ⇒ Object
Create the tasks defined by this task library.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 |
# File 'lib/rake/packagetask.rb', line 107 def define fail "Version required (or :noversion)" if @version.nil? @version = nil if :noversion == @version desc "Build all the packages" task :package desc "Force a rebuild of the package files" task repackage: [:clobber_package, :package] desc "Remove package products" task :clobber_package do rm_r package_dir rescue nil end task clobber: [:clobber_package] [ [need_tar, tgz_file, "z"], [need_tar_gz, tar_gz_file, "z"], [need_tar_bz2, tar_bz2_file, "j"], [need_tar_xz, tar_xz_file, "J"] ].each do |need, file, flag| if need task package: ["#{package_dir}/#{file}"] file "#{package_dir}/#{file}" => [package_dir_path] + package_files do chdir(package_dir) do sh @tar_command, "#{flag}cvf", file, package_name end end end end if need_zip task package: ["#{package_dir}/#{zip_file}"] file "#{package_dir}/#{zip_file}" => [package_dir_path] + package_files do chdir(package_dir) do sh @zip_command, "-r", zip_file, package_name end end end directory package_dir_path => @package_files do @package_files.each do |fn| f = File.join(package_dir_path, fn) fdir = File.dirname(f) mkdir_p(fdir) unless File.exist?(fdir) if File.directory?(fn) mkdir_p(f) else rm_f f safe_ln(fn, f) end end end self end |
#init(name, version) ⇒ Object
Initialization that bypasses the “yield self” and “define” step.
92 93 94 95 96 97 98 99 100 101 102 103 104 |
# File 'lib/rake/packagetask.rb', line 92 def init(name, version) @name = name @version = version @package_files = Rake::FileList.new @package_dir = "pkg" @need_tar = false @need_tar_gz = false @need_tar_bz2 = false @need_tar_xz = false @need_zip = false @tar_command = "tar" @zip_command = "zip" end |
#package_dir_path ⇒ Object
The directory this package will be built in
175 176 177 |
# File 'lib/rake/packagetask.rb', line 175 def package_dir_path "#{package_dir}/#{package_name}" end |
#package_name ⇒ Object
The name of this package
169 170 171 |
# File 'lib/rake/packagetask.rb', line 169 def package_name @version ? "#{@name}-#{@version}" : @name end |
#tar_bz2_file ⇒ Object
The package name with .tar.bz2 added
193 194 195 |
# File 'lib/rake/packagetask.rb', line 193 def tar_bz2_file "#{package_name}.tar.bz2" end |
#tar_gz_file ⇒ Object
The package name with .tar.gz added
187 188 189 |
# File 'lib/rake/packagetask.rb', line 187 def tar_gz_file "#{package_name}.tar.gz" end |
#tar_xz_file ⇒ Object
The package name with .tar.xz added
199 200 201 |
# File 'lib/rake/packagetask.rb', line 199 def tar_xz_file "#{package_name}.tar.xz" end |
#tgz_file ⇒ Object
The package name with .tgz added
181 182 183 |
# File 'lib/rake/packagetask.rb', line 181 def tgz_file "#{package_name}.tgz" end |
#zip_file ⇒ Object
The package name with .zip added
205 206 207 |
# File 'lib/rake/packagetask.rb', line 205 def zip_file "#{package_name}.zip" end |