Module: AuthlogicConnect::Openid::Session
- Defined in:
- lib/authlogic_connect/openid/session.rb
Overview
This module is responsible for adding all of the OpenID goodness to the Authlogic::Session::Base class.
Defined Under Namespace
Modules: InstanceMethods
Class Method Summary collapse
-
.included(klass) ⇒ Object
Add a simple openid_identifier attribute and some validations for the field.
Class Method Details
.included(klass) ⇒ Object
Add a simple openid_identifier attribute and some validations for the field.
5 6 7 8 9 |
# File 'lib/authlogic_connect/openid/session.rb', line 5 def self.included(klass) klass.class_eval do include InstanceMethods end end |