Skip to content

Instantly share code, notes, and snippets.

@mmyoji
Last active March 15, 2019 22:38
Show Gist options
  • Save mmyoji/d8cf8fa752b992f9fe2aa8e88897540f to your computer and use it in GitHub Desktop.
Save mmyoji/d8cf8fa752b992f9fe2aa8e88897540f to your computer and use it in GitHub Desktop.
Calls render method directly in Rails

http://blog.nishimu.land/entry/2013/09/18/234044

  • Rails v5.0.5
helper = ActionView::Base.new
helper.lookup_context.view_paths << Rails.root.join("app/views")
  
# e.g.) app/views/shared/post_elements/heading/_heading.html.haml
helper.render(
  partial: "shared/post_elements/heading/heading",
  locals: {
    post: post,
    post_element: post_element,
  }
)
#=> <String>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment