Every time I change anything, I have to restart the server for it to take effect. But that wasn’t always the case, it used to work normally before, when I changed anything, it used to get updated automatically.. what happened?
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.
Rails uses
config.cache_classesto determine whether it should or should not reload your application classes on each request.You should ensure it is set to
falsein yourdevelopment.rbfile (or whatever environment you actually use).