This is going to be an off the wall question simply because everything is working perfectly and no crashing, no nothing, just smooth sailing. However, in my development log I have noticed a error after every action that is performed. I would like to know how to 1)know what it means and 2)get rid of it. So here it is: EnrollController: missing default helper path enroll_helper Thanks, --Shandy -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> This is going to be an off the wall question simply because everything > is working perfectly and no crashing, no nothing, just smooth sailing. > However, in my development log I have noticed a error after every action > that is performed. I would like to know how to 1)know what it means and > 2)get rid of it. So here it is: > > EnrollController: missing default helper path enroll_helperProbably means you didn''t use ./script/generate to buildthat controller so didn''t create the following: app/helps/enroll_helper.rb containing: module EnrollHelper end Create that and the errors will stop. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---