I am utilizing Refinerycms for my web application. I created an engine and I created a helper called PostsHelper. I want to be able to utilize the helper in my view (obviously), but it does not work. I have been looking over some example code for a Refinery blog, and it uses something like the following in a controller:
helper :posts
However, when I add this code to my Posts controller I get the following error:
LoadError in PostsController#index
Missing helper file helpers/posts_helper.rb
This is my posts helper:
require 'nokogiri'
module PostsHelper
def readMore(post)
doc = Nokogiri::HTML(post.message)
intro = doc.search("div[class='intro']")
result = Nokogiri::XML::DocumentFragment.parse(intro)
result << link_to("Read More", post_path(post))
result.to_html
end
So ultimately I am confused on how to "have a helper help a view" in an engine.
Appreciate any help.
posts_helper.rbfile? – Brandon Tilley Jan 6 at 1:15app/helpers? – Brandon Tilley Jan 6 at 1:17