I'm upgrading to Rails 3.2, and running rake db:migrate gives me several errors of the form:

DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will be removed in Rails 4.0. Move them out and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and config/initializers/myplugin.rb. See the release notes for more on this: http://weblog.rubyonrails.org/2012/01/04/rails-3-2-0-rc2-has-been-released. (called from at /app/Rakefile:7)

What's perplexing is that my vendor/plugins directory is empty -- is there another plugins directory that it's referencing?

link|improve this question

76% accept rate
Was even more preplexing for me as I DID have stuff there, but after removing it still go the error from Heroku! Great question, great answer – Phantomwhale May 17 at 8:41
feedback

4 Answers

up vote 46 down vote accepted

Are you using Heroku? Heroku "injects" some plugins during slug compilation.

-----> Rails plugin injection
       Injecting rails_log_stdout
       Injecting rails3_serve_static_assets

Response from Heroku:

Lincoln, Jan 29 08:32 pm (PST):

Hi, they are deprecated in 3.2, but will continue to function correctly until Rails 4.0 is released.

We are aware of this and working on an updated system for this, no current ETA but I'd imagine definitely before 4.0 ships.

Cheers, - Linc

link|improve this answer
Yep, I realize that all the warnings came from my Heroku scripts and logs. I'll assume that (a) it's the plugin injections and (b) that the Heroku team will fix this before it becomes an actual problem. – fearless_fool Jan 28 at 4:20
Im a newbie and i am a little stuck on how i edit railties-3.2.0. Can you please help. – Vezu Jan 30 at 11:33
@vezu I recommend you don't start. This was something that used to be common before we started using bundler, but right now it's unlikely to work, and will probably just break stuff. – Matthew Rudy Jan 31 at 8:21
@MatthewRudy do you have any suggestions. I email heroku yesterday but no luck. – Vezu Jan 31 at 8:39
1  
I tried adding an initializer gist.github.com/1709421 but it doesnt work (I guess plugins are loaded earlier than app initializers). My suggestion is dont worry... its just noise. – Matthew Rudy Jan 31 at 8:52
feedback

You can try

::ActiveSupport::Deprecation.silenced = true

in your production.rb since it's just noise.

link|improve this answer
4  
Ideally one would only suppress this particular warning, do you know if that's possible? – Vincent Mar 7 at 3:14
if you do it in production.rb you should see the errors in development - if all else fails set the opposite in development.rb – iterion May 12 at 6:39
feedback

The new way of silencing deprecation notices is:

config.active_support.deprecation = :silence

in your environments/production.rb file.

link|improve this answer
feedback

The best approach I have found is documented here. This is assuming you search and found this question because you do have old-style plugins.

I went with the Make it not a gem at all part, because I needed to be able to turn plugins on/off during my capistrano deployment, based on what flavor of the app I was deploying. Before I used config.plugins to specify what plugin to use. With this approach I'm using a "require" on config.before_configuration instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.