Class: Platforms::Core::Configuration

Inherits:
Object
  • Object
show all
Includes:
ActiveSupport::Configurable
Defined in:
lib/platforms/core/configuration.rb

Overview

The class which stores the gem’s configuration Should only store core configuration, not related to each product.

Instance Method Summary collapse

Instance Method Details

#network_classObject

The default name for the main application’s network class. (defaults: ::Network)

See Also:



38
# File 'lib/platforms/core/configuration.rb', line 38

config_accessor(:network_class) { "::Network" }

#user_classObject

The default name for the main application’s user class. (defaults: ::User)

See Also:



31
# File 'lib/platforms/core/configuration.rb', line 31

config_accessor(:user_class)    { "::User" }