Flowdock
method

_handle_method_missing

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - 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

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# 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
Register or log in to add new notes.