Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 8872

Show
Ignore:
Timestamp:
02/14/08 22:57:33 (2 years ago)
Author:
david
Message:

Tied plugin to ruby-openid 1.1.4 gem until we can make it compatible with 2.x [DHH]

Files:

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 
    13* Use URI instead of regexps to normalize the URL and gain free, better matching #8136 [dkubb] 
    24 
  • plugins/open_id_authentication/init.rb

    r6936 r8872  
    11begin 
     2  gem 'ruby-openid', '=1.1.4' 
    23  require 'openid'   
    34rescue 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" 
    106end 
    117