Flowdock
method

_render_to_body_with_renderer

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: ActionController::Renderers
_render_to_body_with_renderer(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 40
    def _render_to_body_with_renderer(options)
      _renderers.each do |name|
        if options.key?(name)
          _process_options(options)
          method_name = Renderers._render_with_renderer_method_name(name)
          return send(method_name, options.delete(name), options)
        end
      end
      nil
    end
Register or log in to add new notes.