Authlogic OpenID error: uninitialized constant OpenIdAuthentication::InvalidOpenId
openid, ruby-on-rails
Solution
rails/open_id_authentication plugin has been updated a few days ago and it breaks compatibility with the authlogic_openid gem (v=1.0.4).
Youl'll have to wait until someone fix the authlogic_openid gem (the issue)
Problem
Using authlogic 2.1.3, and authlogic-oid 1.0.4 I receive the following error as soon as rails hits a controller making a request to an OpenID provider: ``` uninitialized constant OpenIdAuthentication::InvalidOpenId ``` I also have the following installed: - rack-openid (0.2.1) - ruby-openid (2.1.7) - rails/open_id_authentication plugin Gems in environment.rb are configured as such: ``` config.gem "authlogic" config.gem "authlogic-oid", :lib => "authlogic_openid" config.gem "ruby-openid", :lib => "openid" ``` Any suggestions would be appreciated, thank you.