I've been reading code in an effort to come up to speed on the way
Merb authentication works, and I've run into a small puzzle. The
module Merb::SessionMixin that gets mixed into Merb::Controller
defines a method 'session' :

    def session(session_store = nil)
      request.session(session_store)
    end

I'm having trouble seeing what 'request' in this method definition
refers to. It appears to be an object of class Merb::Request, or a
method returning such an object (since the Request class defines a
'session' method), but I haven't been able to find where that object
or method is defined. No doubt I'm missing something obvious, but it
has eluded me so far. Can someone tell me what that object refers to?

Mark.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"merb" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/merb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to