| action_controller |
A stub for setting options on ActionController::Base
|
| action_mailer |
A stub for setting options on ActionMailer::Base
|
| action_view |
A stub for setting options on ActionView::Base
|
| action_web_service |
A stub for setting options on ActionWebService::Base
|
| active_record |
A stub for setting options on ActiveRecord::Base
|
| breakpoint_server |
Whether or not to use the breakpoint server (boolean)
|
| cache_classes |
Whether or not classes should be cached (set to false if you want
application classes to be reloaded on each request)
|
| connection_adapters |
The list of connection adapters to load. (By default, all connection
adapters are loaded. You can set this to be just the adapter(s) you will
use to reduce your application’s load time.)
|
| controller_paths |
The list of paths that should be searched for controllers. (Defaults to
app/controllers and components.)
|
| database_configuration_file |
The path to the database configuration file to use. (Defaults to
config/database.yml.)
|
| frameworks |
The list of rails framework components that should be loaded. (Defaults to
:active_record, :action_controller,
:action_view, :action_mailer, and
:action_web_service).
|
| load_once_paths |
An array of paths from which Rails will automatically load from only once.
All elements of this array must also be in load_paths.
|
| load_paths |
An array of additional paths to prepend to the load path. By default, all
app, lib, vendor and mock paths are included in
this list.
|
| log_level |
The log level to use for the default Rails logger. In production mode, this
defaults to :info. In development mode, it defaults to
:debug.
|
| log_path |
The path to the log file to use. Defaults to log/#{environment}.log (e.g.
log/development.log or log/production.log).
|
| logger |
The specific logger to use. By default, a logger will be created and
initialized using #log_path and #log_level, but a programmer may
specifically set the logger to use via this accessor and it will be used
directly.
|
| plugin_paths |
The path to the root of the plugins directory. By default, it is in
vendor/plugins.
|
| plugins |
The list of plugins to load. If this is set to nil, all plugins
will be loaded. If this is set to [], no plugins will be loaded.
Otherwise, plugins will be loaded in the order specified.
|
| view_path |
The root of the application’s views. (Defaults to
app/views.)
|
| whiny_nils |
Set to true if you want to be warned (noisily) when you try to
invoke any method of nil. Set to false for the standard
Ruby behavior.
|
<code/>and<pre/>for code samples.