Changeset 8872
- Timestamp:
- 02/14/08 22:57:33 (2 years ago)
- Files:
-
- plugins/open_id_authentication/CHANGELOG (modified) (1 diff)
- plugins/open_id_authentication/init.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/open_id_authentication/CHANGELOG
r7214 r8872 1 * Tied plugin to ruby-openid 1.1.4 gem until we can make it compatible with 2.x [DHH] 2 1 3 * Use URI instead of regexps to normalize the URL and gain free, better matching #8136 [dkubb] 2 4 plugins/open_id_authentication/init.rb
r6936 r8872 1 1 begin 2 gem 'ruby-openid', '=1.1.4' 2 3 require 'openid' 3 4 rescue LoadError 4 begin 5 gem 'ruby-openid' 6 require 'openid' 7 rescue LoadError 8 puts "Install the ruby-openid gem to enable OpenID support" 9 end 5 puts "Install the ruby-openid gem to enable OpenID support" 10 6 end 11 7