Displaying 1 result from an estimated 1 matches for "santaslittlehelper".
2005 Feb 15
1
Modules Beta Comments
I''m not sure but I think this is due to the ''modules'' support in the
latest beta gems.
In some controllers I include small utility classes that only make
sense for that controller. Something like this:
class SantasLittleHelper < Foo
end
class FooController < ApplicationController
end
Where Foo is defined in RAILS_ROOT/lib/foo.rb
What I am seeing now with this new beta is this:
#<NameError: uninitialized constant Controllers::SantasLittleHelper>
The ''Controllers::'' part makes me...