module MinimalistAuthentication

Constants

VERSION

Public Class Methods

configuration() click to toggle source

store the configuration object

# File lib/minimalist_authentication/configuration.rb, line 5
def self.configuration
  @configuration ||= Configuration.new
end
configure() { |configuration| ... } click to toggle source

yield the configuration object for modification

# File lib/minimalist_authentication/configuration.rb, line 10
def self.configure
  yield configuration
end
deprecator() click to toggle source
# File lib/minimalist_authentication.rb, line 14
def self.deprecator
  @deprecator ||= ActiveSupport::Deprecation.new("4.0", name)
end
reset_configuration!() click to toggle source

reset the configuration object

# File lib/minimalist_authentication/configuration.rb, line 15
def self.reset_configuration!
  @configuration = nil
end