instance method Rake::PackageTask#package_dir_path

package_dir_path -> String[permalink][rdoc][edit]

パッケージに含むファイルを配置するディレクトリを返します。


# Rakefile での記載例とする
require 'rake/packagetask'

Rake::PackageTask.new("sample", "1.0.0") do |package_task|
  package_task.package_dir_path # => "pkg/sample-1.0.0"
end