Created
August 28, 2013 22:31
-
-
Save excid3/6372212 to your computer and use it in GitHub Desktop.
Override ActionView::Renderer to inject view template/partial names into the HTML.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module ActionView | |
class Renderer | |
def render(context, options) | |
Rails.logger.info options.inspect | |
result = if options.key?(:partial) | |
render_partial(context, options) | |
else | |
render_template(context, options) | |
end | |
result + "#{options}" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'll probably need to add some logic here to ignore things like the layout, but this will output the options hash at the end of each template that is rendered.
It also prints out the hash in the console so you can see what it's like.