开发者

How do you find deprecated methods in a rails app?

开发者 https://www.devze.com 2023-02-03 13:48 出处:网络
I\'m seeing blog posts where people mention deprecated methods in rails3, for example model.errors.on is deprecated in favor of model.errors[]

I'm seeing blog posts where people mention deprecated methods in rails3, for example model.errors.on is deprecated in favor of model.errors[]

My question is, how do you find these deprecated methods? Is there a rake task or something I can run to find them in my project? Do I just need to look them up on a resource like rails3 release notes? Or is ther开发者_开发问答e some other way?


Warnings surely show up in development.log :) BTW, i was asking to myself this question some days ago and i used a very brutal method. Having rails source on my laptop, i searched for all calls to the warn method. Brutal but efficient.

0

精彩评论

暂无评论...
验证码 换一张
取 消