Source: show | on GitHub
# File actionpack/test/template/erb/helper.rb, line 19 def block_helper(str, rest) "<%= #{str} do %>#{rest}<% end %>" end
# File actionpack/test/template/erb/helper.rb, line 14 def render_content(start, inside) template = block_helper(start, inside) ActionView::Template::Handlers::Erubis.new(template).evaluate(ViewContext.new) end