Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5352 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Michael Koziarski
2006-10-24 07:26:18 +00:00
parent 0c94868f67
commit c08997405d
2 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
*SVN*
* Update environment.rb comments to include config.autoload_paths. Closes #6478 [caio]
* Update scaffold to use new form_tag block functionality. Closes #6480. [BobSilva]
* Plugin generator: check for class collisions. #4833 [vinbarnes@gmail.com]

View File

@@ -19,9 +19,13 @@ Rails::Initializer.run do |config|
# Only load the plugins named here, by default all plugins in vendor/plugins are loaded
# config.plugins = %W( exception_notification ssl_requirement )
# Add additional load paths (these paths will be subject to auto-loading of constants)
# Add additional load paths (these are searched when explicitly require something)
# config.load_paths += %W( #{RAILS_ROOT}/extras )
# Add additional autoloading load paths
# (these paths will be subject to auto-loading of constants)
# config.autoload_paths += Dir["#{RAILS_ROOT}/models/*/"]
# Force all environments to use the same logger level
# (by default production uses :info, the others :debug)
# config.log_level = :debug