method
new
Register or
log in
to add new notes.
carlos_roque -
April 17, 2018
0 thanks
When using ActionView::Base.new to render templates views
when calling this method to render templates to a string. in order to use any helper methods you need to add them to the view like this
view = ActionView::Base.new(ActionController::Base.view_paths, {}) view.class_eval do # include any needed helpers (for the view) include ApplicationHelper end
source: http://peden.biz/rendering-a-rails-view-from-a-script/