I’m calling helper methods from the Rails console in Rails 3 like this:
>> helper.my_method(parameter)
>> #=> some result
However, if I change the helper method the changes are not reflected when I call the same method again. I have to exit and run rails console in order to see the changes to the helper method take effect.
You just need to run
reload!and most classes will be reloaded, including your helpers.