Skip to content

Instantly share code, notes, and snippets.

@aalavandhan
Created August 29, 2014 15:17
Show Gist options
  • Save aalavandhan/a568e982c54a7fcea00b to your computer and use it in GitHub Desktop.
Save aalavandhan/a568e982c54a7fcea00b to your computer and use it in GitHub Desktop.
Rails simple render
def render(view_name)
filename = File.join "app", "views", "#{view_name}.html.erb"
template = File.read filename
eruby = Erubis::Eruby.new(template)
eruby.result
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment