Defect #8611
closedrake/rdoctask is deprecated
0%
Description
whenever I raked something(like, rake db:migrate), I got this warning:
rake/rdoctask is deprecated. Use rdoc/task instead (in RDoc 2.4.2+) WARNING: 'task :t, arg, :needs => [deps]' is deprecated. Please use 'task :t, [ args] => [deps]' instead. at D:/RubyOnRails/projects/redmine/lib/tasks/email.rake:170
it's a minor problem for now, just to report it.
my versions:ruby 1.8.7 (2011-02-18 patchlevel 334) [i386-mingw32]
- LOCAL GEMS ***
actionmailer (2.3.11)
actionpack (2.3.11)
activerecord (2.3.11)
activeresource (2.3.11)
activesupport (2.3.11)
cgi_multipart_eof_fix (2.5.0
gem_plugin (0.2.3)
i18n (0.4.2)
mongrel (1.1.5 x86-mingw32)
mongrel_service (0.4.0)
mysql (2.8.1 x86-mingw32)
rack (1.1.1)
rails (2.3.11)
rake (0.9.2)
Related issues
Updated by Etienne Massip over 13 years ago
- Status changed from New to Closed
- Resolution set to Invalid
Not a redmine issue, just a rake/RoR compatibility warning.
Updated by Jean-Baptiste Barth over 13 years ago
It's more than a compatibility warning I think, some rake tasks don't work for me with rake 0.9.2. I recommend sticking with rake 0.8.7 for now.
Updated by Anonymous about 13 years ago
If you have both versions installed, you can run
rake _0.8.7_ db:migrate
.
Updated by Etienne Massip about 13 years ago
- Status changed from Closed to Reopened
- Target version set to Candidate for next major release
- Resolution deleted (
Invalid)
Actually the syntax is supported at least since Rake 0.8.3, so we could remove this warning.
Updated by Etienne Massip about 13 years ago
Etienne Massip wrote:
Actually the syntax is supported at least since Rake 0.8.3
Sorry, I was refering to the WARNING part.
Updated by Etienne Massip about 13 years ago
- Target version changed from Candidate for next major release to 1.3.0
Updated by Etienne Massip about 13 years ago
Updated by Jean-Philippe Lang almost 13 years ago
- Status changed from Reopened to Closed
- Resolution set to Fixed
Fix applied with a more friendly way to deal with a missing rdoc gem, considering that 99.9% of users just rake db:migrate and do not need it.