Missing helper

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

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

Probably 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.