Module: Authlogic::Session::Scopes::InstanceMethods
- Defined in:
- lib/authlogic/session/scopes.rb
Instance Method Summary (collapse)
-
- (InstanceMethods) initialize(*args)
Setting the scope if it exists upon instantiation.
-
- (Object) scope
The scope of the current object.
Instance Method Details
- (InstanceMethods) initialize(*args)
Setting the scope if it exists upon instantiation.
77 78 79 80 |
# File 'lib/authlogic/session/scopes.rb', line 77 def initialize(*args) self.scope = self.class.scope super end |
- (Object) scope
The scope of the current object
83 84 85 |
# File 'lib/authlogic/session/scopes.rb', line 83 def scope @scope ||= {} end |