Notes posted by carlos_roque
RSS feed
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/
carlos_roque -
January 22, 2016
0 thanks
Errno::EEXIST
When Errno::EEXIST is raised, it indicates there are permission issues, rather than an existing item.