Class: Cubic::Application
Overview
A cubic application inherits from the Application class, allowing it to change things such as configuration options.
Direct Known Subclasses
Class Method Summary collapse
-
.config ⇒ Object
Allows configuration options to be set within the config/application.rb file.
-
.load_app ⇒ Object
Requires all files from the generated application during startup.
Methods inherited from Engine
Constructor Details
This class inherits a constructor from Cubic::Engine
Class Method Details
.config ⇒ Object
Allows configuration options to be set within the config/application.rb file.
20 21 22 |
# File 'lib/cubic/application.rb', line 20 def config Configurator end |
.load_app ⇒ Object
Requires all files from the generated application during startup.
14 15 16 |
# File 'lib/cubic/application.rb', line 14 def load_app start_load if load_acceptable? end |