- A
- B
- E
- N
- R
- T
- W
Class Public methods
new() Link
Instance Public methods
after_initialize(&block) Link
Last configurable block to run. Called after frameworks initialize.
app_generators() Link
This allows you to modify application's generators from Railties.
Values set on app_generators
will become defaults for application, unless application overwrites them.
app_middleware() Link
This allows you to modify the application's middlewares from Engines.
All operations you run on the app_middleware
will be replayed on the application once it is defined and the default_middlewares are created
before_configuration(&block) Link
First configurable block to run. Called before any initializers are run.
before_eager_load(&block) Link
Third configurable block to run. Does not run if config.eager_load
set to false.
before_initialize(&block) Link
Second configurable block to run. Called before frameworks initialize.
eager_load_namespaces() Link
All namespaces that are eager loaded
respond_to?(name, include_private = false) Link
to_prepare(&blk) Link
Defines generic callbacks to run before after_initialize
. Useful for Rails::Railtie
subclasses.
to_prepare_blocks() Link
Array
of callbacks defined by to_prepare
.
watchable_dirs() Link
Add directories that should be watched for change. The key of the hashes should be directories and the values should be an array of extensions to match in each directory.