class Ruolo::Configuration

A class that defines all the configuration overrides.

Attributes

connection[RW]

Sequel to connection to use.

user_class[RW]

User class for association with ruolo models.

Public Class Methods

new() click to toggle source

Create a new configuration object.

@return [Ruolo::Configuration] the new configuration

# File lib/ruolo/configuration.rb, line 28
def initialize
  @connection = nil
  @user_class = 'User'
end