Skip to content

Instantly share code, notes, and snippets.

@chourobin
Created November 29, 2012 18:42
Show Gist options
  • Save chourobin/4171036 to your computer and use it in GitHub Desktop.
Save chourobin/4171036 to your computer and use it in GitHub Desktop.
Rendering views outside of a controller
def render_erb(template_path, params)
view = ActionView::Base.new(ActionController::Base.view_paths, {})
class << view
include ApplicationHelper
end
view.render(:file => "#{template_path}.html.erb", :object => params)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment