Methods
- #
- A
- D
- I
- M
- R
Constants
UnknownAction | = | ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActionController::UnknownAction', '::AbstractController::ActionNotFound') |
DoubleRenderError | = | ActiveSupport::Deprecation::DeprecatedConstantProxy.new('ActionController::DoubleRenderError', '::AbstractController::DoubleRenderError') |
Class Public methods
# File actionpack/lib/action_controller/metal/compatibility.rb, line 16 16: def self.default_charset=(new_charset) 17: ActiveSupport::Deprecation.warn "Setting default charset at controller level" \ 18: " is deprecated, please use `config.action_dispatch.default_charset` instead", caller 19: ActionDispatch::Response.default_charset = new_charset 20: end
Instance Public methods
# File actionpack/lib/action_controller/metal/compatibility.rb, line 53 53: def _handle_method_missing 54: ActiveSupport::Deprecation.warn "Using `method_missing` to handle non" \ 55: " existing actions is deprecated and will be removed in Rails 4.0, " \ 56: " please use `action_missing` instead.", caller 57: method_missing(@_action_name.to_sym) 58: end
For old tests