dennismonsewicz
dennismonsewicz

Reputation: 25542

Rails 3 restart console everytime a model is changed

For some reason in my local environment, every time I change a model, I have to restart my console instead of reloading it. I have cache_classes set to false in my development.rb... any reason why this would be happening?

Upvotes: 5

Views: 3666

Answers (1)

Pete
Pete

Reputation: 10680

As suggested by this question, you type reload! in the rails console.

Upvotes: 11

Related Questions