2.3.8 attempts to give deprecation notices for things which will go away in Rails 3.0 & later. In this case it is saying that several of your plugins should place their rake tasks into the lib directory. While this won't cause any problems in your app, it is good to start resolving the warnings to be better prepared for future updates. You may also want to consider using the gem versions of those plugins if available as that will also eliminate the deprecation notices. Also with Bundler, the days of needing to vendor gems are for the most part gone. You can use Bundler with 2.3.8 (I am) & it can make things much easier for you in terms of dependency management.
Niels On Aug 18, 2010, at 6:11 AM, Tom Mac wrote: > Hi > > I upgraded my rails application rails 2.3.8 from 2.3.5 like below > > gem install rails -v=2.3.8 > > Now in environemnt.rb RAILS_GEM_VERSION changed to '2.3.8'. Now > when I tried to a previous migration like > > rake db:migrate VERSION=20100714122104 > > I got warning like > DEPRECATION WARNING: Rake tasks in vendor/plugins/delayed_job/tasks, > vendor/plugins/paperclip/tasks, vendor/plugins/seed-fu/tasks, > vendor/plugins/simple_captcha/tasks, vendor/plugins/tabs_on_rails/tasks, > and vendor/plugins/xss_terminate/tasks are deprecated. Use lib/tasks > instead. (called from > /usr/lib/ruby/gems/1.8/gems/rails-2.3.8/lib/tasks/rails.rb:10) > > > I would like to know why this message shown? Is it any problem? If > it is, how to resolve it? > > Thanks > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

