Sha256: 5db9151fa27c7edf9e1e0f136ea22ee09d22fe7b92143702e01f8f8142d13712
Contents?: true
Size: 471 Bytes
Versions: 27
Compression:
Stored size: 471 Bytes
Contents
module AuthlogicConnect class Engine < Rails::Engine initializer "authlogic_connect.authentication_hook" do |app| app.middleware.use AuthlogicConnect::CallbackFilter app.middleware.use OpenIdAuthentication end initializer "authlogic_connect.finalize", :after => "authlogic_connect.authentication_hook" do |app| OpenID::Util.logger = Rails.logger ActionController::Base.send :include, OpenIdAuthentication end end end
Version data entries
27 entries across 27 versions & 8 rubygems