You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

init.rb 269B

12345678910
  1. # frozen_string_literal: false
  2. require File.dirname(__FILE__) + '/lib/open_id_authentication'
  3. config.middleware.use OpenIdAuthentication
  4. config.after_initialize do
  5. OpenID::Util.logger = Rails.logger
  6. ActionController::Base.send :include, OpenIdAuthentication
  7. end