Flowdock
method

_handle_render_options

Importance_0
Ruby on Rails latest stable (v6.1.7.7) - 0 notes - Class: ActionController::Renderers

Method deprecated or moved

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

_handle_render_options(options) 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/renderers.rb, line 35
    def _handle_render_options(options)
      _renderers.each do |name|
        if options.key?(name)
          _process_options(options)
          return send("_render_option_#{name}", options.delete(name), options)
        end
      end
      nil
    end
Register or log in to add new notes.