# File lib/action_controller/metal/compatibility.rb, line 16 def self.default_charset=(new_charset) ActiveSupport::Deprecation.warn "Setting default charset at controller level" " is deprecated, please use `config.action_dispatch.default_charset` instead", caller ActionDispatch::Response.default_charset = new_charset end
# File 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
# File lib/action_controller/metal/compatibility.rb, line 42 def _normalize_options(options) options[:text] = nil if options.delete(:nothing) == true options[:text] = " " if options.key?(:text) && options[:text].nil? super end
# File lib/action_controller/metal/compatibility.rb, line 38 def assign_shortcuts(*) ActiveSupport::Deprecation.warn "Calling `assign_shortcuts` is deprecated and has no effect anymore.", caller end
For old tests
# File lib/action_controller/metal/compatibility.rb, line 34 def initialize_template_class(*) ActiveSupport::Deprecation.warn "Calling `initialize_template_class` is deprecated and has no effect anymore.", caller end
# File lib/action_controller/metal/compatibility.rb, line 60 def method_for_action(action_name) super || (respond_to?(:method_missing) && "_handle_method_missing") end
Generated with the Darkfish Rdoc Generator 2.