Module: ActionController::Rendering
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Included In:
Base,
DataStreaming,
::ActionView::TestCase::TestController,
Rails::ApplicationController,
Rails::InfoController,
Rails::MailersController,
Rails::WelcomeController
| |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
::ActiveSupport::Concern
|
|
Defined in: | actionpack/lib/action_controller/metal/rendering.rb |
Constant Summary
-
RENDER_FORMATS_IN_PRIORITY =
# File 'actionpack/lib/action_controller/metal/rendering.rb', line 5[:body, :text, :plain, :html]
Class Method Summary
::ActiveSupport::Concern - Extended
Instance Method Summary
- #render_to_body(options = {})
-
#render_to_string
Overwrite render_to_string because body can now be set to a rack body.
Instance Method Details
#render_to_body(options = {})
[ GitHub ]# File 'actionpack/lib/action_controller/metal/rendering.rb', line 31
def render_to_body( = {}) super || _render_in_priorities( ) || ' ' end
#render_to_string
Overwrite render_to_string because body can now be set to a rack body.
# File 'actionpack/lib/action_controller/metal/rendering.rb', line 20
def render_to_string(*) result = super if result.respond_to?(:each) string = "" result.each { |r| string << r } string else result end end