module JWT::Configuration

def configuration

Returns:
  • (JWT::Configuration::Container) - the configuration container.
def configuration
  @configuration ||= ::JWT::Configuration::Container.new
end

def configure

Other tags:
    Yieldparam: config - the configuration container.

Other tags:
    Yield: - Gives the current configuration to the block.
def configure
  yield(configuration)
end