class AbstractController::Base

def clear_action_methods!

action_methods, they will be recalculated.
::clear_action_methods! allows you to do that, so next time you run
action_methods are cached and there is sometimes a need to refresh them.
def clear_action_methods!
  @action_methods = nil
end