Skip to content

Instantly share code, notes, and snippets.

@scharfie
Created February 6, 2009 19:07
Show Gist options
  • Save scharfie/59552 to your computer and use it in GitHub Desktop.
Save scharfie/59552 to your computer and use it in GitHub Desktop.
require 'erb'
@content_for_layout = "page content"
erb = ERB.new("<div><%= yield %></div>")
eval(erb.src) do |key|
key = :layout if key.nil?
instance_variable_get(:"@content_for_#{key}")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment