Sha256: f46b8be5964d556a0a5f5490ca46fd6e110b0e2cf934940f320368e26c2cbb5d
Contents?: true
Size: 585 Bytes
Versions: 126
Compression:
Stored size: 585 Bytes
Contents
# Perform a build exclusively from a build params file. Requires that the build # params file include a setting for task, which is an array of the arguments # given to rake originally, including, first, the task name. The params file is # always loaded when passed, so these variables are accessible immediately. namespace :pl do desc "Build from a build params file" task :build_from_params do Pkg::Util.check_var('PARAMS_FILE', ENV['PARAMS_FILE']) Pkg::Util::Git.checkout(Pkg::Config.ref) Rake::Task[Pkg::Config.task[:task]].invoke(Pkg::Config.task[:args]) end end
Version data entries
126 entries across 126 versions & 1 rubygems