I have this class:
class SpecialAwesome
module Controller
def builder
SpecialAwesome.with_member(current_member)
which fails saying:
NoMethodError: undefined method `with_member'
But then I see the method here at:
class SpecialAwesome
module Options
def with_member member
self.class.new options.merge(:member => member)
end
How come the other file doesn't recognize this method?