diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:05:00 +1100 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-11-26 14:05:00 +1100 |
commit | 9979251d7c2ab886410f5448dfec701218cc0d15 (patch) | |
tree | ab5fb5c1be892a63f802bed1ffb91aa1b54f536f | |
parent | c8af6c28cc82d0c6cbddd326f316405c570eac2d (diff) | |
download | rails-9979251d7c2ab886410f5448dfec701218cc0d15.tar.gz rails-9979251d7c2ab886410f5448dfec701218cc0d15.tar.bz2 rails-9979251d7c2ab886410f5448dfec701218cc0d15.zip |
There is no plugin_loader config option in Rails 3
-rw-r--r-- | railties/guides/source/configuring.textile | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index fc4cc623a1..dd6aba12d6 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -53,15 +53,12 @@ h4. Rails General Configuration * +config.eager_load_paths+ accepts an array of paths from which Rails will eager load on boot if cache classes is enabled. All elements of this array must also be in +load_paths+. - * +config.log_level+ defines the verbosity of the Rails logger. In production mode, this defaults to +:info+. In development mode, it defaults to +:debug+. * +config.log_path+ overrides the path to the log file to use. Defaults to +log/#{environment}.log+ (e.g. log/development.log or log/production.log). * +config.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then used to log information from Action Controller. Set to nil to disable logging. -* +config.plugin_loader+ overrides the class that handles loading each plugin. Defaults to +Rails::Plugin::Loader+. - * +config.plugin_locators+ overrides the class that handle finding the desired plugins that you‘d like to load for your application. By default it is the +Rails::Plugin::FileSystemLocator+. * +config.plugin_paths+ overrides the path to the root of the plugins directory. Defaults to +vendor/plugins+. |