method

_handle_method_missing

rails latest stable - Class: ActionController::Compatibility

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.

_handle_method_missing()
public

No documentation available.

# File actionpack/lib/action_controller/metal/compatibility.rb, line 53
    def _handle_method_missing
      ActiveSupport::Deprecation.warn "Using `method_missing` to handle non"          " existing actions is deprecated and will be removed in Rails 4.0, "          " please use `action_missing` instead.", caller
      method_missing(@_action_name.to_sym)
    end