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.

link|improve this question

54% accept rate
In what path is your posts_helper.rb file? – Brandon Tilley Jan 6 at 1:15
Hey, it's vendors/engines/posts/app/helpers – Brian Jan 6 at 1:17
Have you tried placing it in your own app/helpers? – Brandon Tilley Jan 6 at 1:17
Not yet, but I figured there was a way to keep all the engine code together. – Brian Jan 6 at 1:19
feedback

1 Answer

The answer was provided in IRC Refinerycms channel.

I added the following in the path: vendor/engines/posts/lib/refinerycms-posts.rb

 config.to_prepare do
    ::ApplicationController.helper(PostsHelper)
  end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.