module PartiallyUseful module PartialRenderer def render(context, options, block) msg = "rendering '#{options[:partial]}' with locals '#{(options[:locals] || {}).keys}'" "\n#{super(context, options, block)}\n\n".html_safe end end end