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