authlogic-oid 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +4 -0
- data/README.rdoc +1 -0
- data/lib/authlogic_openid/version.rb +1 -1
- data/lib/authlogic_openid.rb +2 -4
- metadata +1 -1
data/CHANGELOG.rdoc
CHANGED
data/README.rdoc
CHANGED
@@ -6,6 +6,7 @@ Authlogic OpenID is an extension of the Authlogic library to add OpenID support.
|
|
6
6
|
|
7
7
|
* <b>Documentation:</b> http://authlogic.rubyforge.org
|
8
8
|
* <b>Authlogic:</b> http://github.com/binarylogic/authlogic
|
9
|
+
* <b>Live example:</b> http://authlogicexample.binarylogic.com
|
9
10
|
|
10
11
|
== Install and use
|
11
12
|
|
data/lib/authlogic_openid.rb
CHANGED
@@ -2,7 +2,5 @@ require "authlogic_openid/version"
|
|
2
2
|
require "authlogic_openid/acts_as_authentic"
|
3
3
|
require "authlogic_openid/session"
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
Authlogic::Session::Base.send(:include, AuthlogicOpenid::Session)
|
8
|
-
end
|
5
|
+
ActiveRecord::Base.send(:include, AuthlogicOpenid::ActsAsAuthentic)
|
6
|
+
Authlogic::Session::Base.send(:include, AuthlogicOpenid::Session)
|