If I have a methods that I want to use in several controllers, to keep my code DRY.
What is the rails way of doing this?
If I have a methods that I want to use in several controllers, to
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want to have your code reusable, I think
application_controlleris the best place to do so. Create any method you think it’s reusable in multiple controllers inapplication_controllerand call them in any controller you want.