authlogic-oid 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ == 1.0.2 released 2009-3-30
2
+
3
+ * Remove config block in initializer.
4
+
1
5
  == 1.0.1 released 2009-3-30
2
6
 
3
7
  * Change password validation option when included, and prepend the OpenID module.
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
 
@@ -41,7 +41,7 @@ module AuthlogicOpenid
41
41
 
42
42
  MAJOR = 1
43
43
  MINOR = 0
44
- TINY = 1
44
+ TINY = 2
45
45
 
46
46
  # The current version as a Version instance
47
47
  CURRENT = new(MAJOR, MINOR, TINY)
@@ -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
- config.to_prepare do
6
- ActiveRecord::Base.send(:include, AuthlogicOpenid::ActsAsAuthentic)
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)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: authlogic-oid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Johnson of Binary Logic