Rails 3.2.x: how to reload app/classes dir during development?
问题 I have some Rails code that does not fit neatly into a model or controller box. So as per this answer, I created a app/classes directory. Rails 3 seems to automatically add this to the "load path" in Rails, and my application correctly finds the classes I define in there without needing to use require statements. However the code in app/classes does not get reloaded in development mode; if I make a change, I need to restart the server in order to see that change. What's the proper way to make