Can anyone tell me how to silence deprecation warinings in Rails 3?
I have a few situations where it is throwing false positives. Namely using - for loops in haml and f.error_messages from the dynamic_form plugin.
Thanks
|
Can anyone tell me how to silence deprecation warinings in Rails 3? I have a few situations where it is throwing false positives. Namely using - for loops in haml and f.error_messages from the dynamic_form plugin. Thanks
| |||||
feedback
|
|
To silence all deprecation warnings you can do:
This could be placed in an initializer or in the environment file for a specific environment (e.g. to silence only in production for example.) Or for a specific section of code, enclose it in a block:
| |||
|
feedback
|
|
Ryan Daigle wrote an article about this, in which he also showed how you can intercept the deprecation warning and do something else with it, like send it to a log file:
http://ryandaigle.com/articles/2006/12/4/how-to-turn-deprecation-warnings-off-in-rails | |||
|
feedback
|