class AbstractController::Base

def method_added(name)

Refresh the cached action_methods when a new action_method is added.
def method_added(name)
  super
  clear_action_methods!
end