module Devise::Async

Constants

VERSION

Public Class Methods

setup() { |self| ... } click to toggle source

Allow configuring Devise::Async with a block

Example:

Devise::Async.setup do |config|
  config.enabled = false
end
# File lib/devise/async.rb, line 18
def self.setup
  yield self
end