1

Possible Duplicate:
Rails 2.3-style plugins and deprecation warnings running task in Heroku

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 i
n your Gemfile, or fold them in to your app as lib/myplugin/* and config/initial
izers/myplugin.rb. See the release notes for more on this: http://weblog.rubyonr
ails.org/2012/1/4/rails-3-2-0-rc2-has-been-released. (called from <top (required
)> at /app/Rakefile:7)

shows 3 times, sometimes shows 2 times what it means? is there any special meaning? How to solve this problem for db:migrate

Community
  • 1
  • 1
imKalpesh
  • 91
  • 1
  • 10

1 Answers1

5

Heroku "injects" some plugins during slug compilation.

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

See Rails 2.3-style plugins and deprecation warnings running task in Heroku

Community
  • 1
  • 1
Simone Carletti
  • 173,507
  • 49
  • 363
  • 364