aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/abstract_controller/rendering.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2013-09-09 12:32:39 -0300
committerJosé Valim <jose.valim@plataformatec.com.br>2013-09-09 12:33:53 -0300
commit67336ce199d4eece2f6047a13e692c356e5caa97 (patch)
treef43f02baf987902a6b23d0edd5fc8207e1df20da /actionpack/lib/abstract_controller/rendering.rb
parenta41669563b960d604068013a5b808476391b1cb9 (diff)
downloadrails-67336ce199d4eece2f6047a13e692c356e5caa97.tar.gz
rails-67336ce199d4eece2f6047a13e692c356e5caa97.tar.bz2
rails-67336ce199d4eece2f6047a13e692c356e5caa97.zip
Remove remaining coupling with AV in MimeResponds
Diffstat (limited to 'actionpack/lib/abstract_controller/rendering.rb')
-rw-r--r--actionpack/lib/abstract_controller/rendering.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/actionpack/lib/abstract_controller/rendering.rb b/actionpack/lib/abstract_controller/rendering.rb
index 575b9807d0..242c44a6eb 100644
--- a/actionpack/lib/abstract_controller/rendering.rb
+++ b/actionpack/lib/abstract_controller/rendering.rb
@@ -32,6 +32,8 @@ module AbstractController
def render(*args, &block)
options = _normalize_render(*args, &block)
self.response_body = render_to_body(options)
+ _process_format(rendered_format)
+ self.response_body
end
# Raw rendering of a template to a string.
@@ -98,6 +100,11 @@ module AbstractController
options
end
+ # Process the rendered format.
+ # :api: private
+ def _process_format(format)
+ end
+
# Normalize args and options.
# :api: private
def _normalize_render(*args, &block)