Flowdock
method

_handle_render_options

Importance_0
v3.2.13 - Show latest stable - 0 notes - Class: ActionController::Renderers
_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 31
    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.