views:

31

answers:

1

i am including my own .rb(HintsHelper.rb) file on view. But it gives the following error. Why? uninitialized constant ActionView::Base::CompiledTemplates::HintsHelper

then...

i included HintsHelper.rb in Application Helper file. but still it is giving me the following error.
uninitialized constant ApplicationHelper::HintsHelper

How to solve this problem. i want to access its(HintsHelper.rb) definitions on view. Plz help here...

thnx...

A: 

Use like

<%= helper HintsHelper%>

I think it should work