WARNING: Rake tasks in {plugin name} tasks are deprecated. Use lib/tasks instead.
found a deprecation of plugin tasks path, plugins news version are installed, but they have not updated for fix this deprecation. Now i want to remove this deprecation without moving tasks folder in lib. is there some other solution for remove this deprecation except physically m开发者_开发百科oving tasks of plugin into plugin's lib folder.
You can't having this deprecation warning without fix it. But you can output it in 3 way :
config.active_support.deprecation = :stderr
config.active_support.deprecation = :log
config.active_support.deprecation = :notify
精彩评论