Problem with Rake's PackageTask

L

Leo --

Hello!

I'm trying to add packaging to my rakefile. I copied the example code
from http://rake.rubyforge.org/classes/Rake/PackageTask.html, that's it:

require 'rake/packagetask'

Rake::packageTask.new("rake", "1.2.3") do |p|
p.need_tar = true
p.package_files.include("lib/**/*.rb")
end

but when I run rake --tasks, there are still no tasks related to
packaging. I googled for a while and I can't solve this puzzle. Please
help.
 
L

Leo

Leo said:
Hello!

I'm trying to add packaging to my rakefile. I copied the example code
from http://rake.rubyforge.org/classes/Rake/PackageTask.html, that's it:

require 'rake/packagetask'

Rake::packageTask.new("rake", "1.2.3") do |p|
p.need_tar = true
p.package_files.include("lib/**/*.rb")
end

but when I run rake --tasks, there are still no tasks related to
packaging. I googled for a while and I can't solve this puzzle. Please
help.

The correct link is
http://rake.rubyforge.org/classes/Rake/PackageTask.html
 
J

Jim Weirich

Leo said:
Hello!

I'm trying to add packaging to my rakefile. I copied the example code
from http://rake.rubyforge.org/classes/Rake/PackageTask.html, that's it:

require 'rake/packagetask'

Rake::packageTask.new("rake", "1.2.3") do |p|
p.need_tar = true
p.package_files.include("lib/**/*.rb")
end

but when I run rake --tasks, there are still no tasks related to
packaging. I googled for a while and I can't solve this puzzle. Please
help.

With your rake file, I get:

$ rake --tasks
(in C:/Documents and Settings/BA2828/My Documents/pgm/ruby/pkgtask)
rake clobber_package # Remove package products
rake package # Build all the packages
rake repackage # Force a rebuild of the package files
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top