diff options
author | Xavier Noria <fxn@hashref.com> | 2010-07-09 19:09:47 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-07-09 19:09:47 +0200 |
commit | c9ae2c11ebbf42d887dced2938a59e8d0634d60a (patch) | |
tree | ca85ef2f5f8d8fa12e838bf8ded75a88d21305fb /railties/lib | |
parent | d9ebc76d70a122544452189f0cb93d3854f2043f (diff) | |
download | rails-c9ae2c11ebbf42d887dced2938a59e8d0634d60a.tar.gz rails-c9ae2c11ebbf42d887dced2938a59e8d0634d60a.tar.bz2 rails-c9ae2c11ebbf42d887dced2938a59e8d0634d60a.zip |
application.rb: revises the comment for autoload_paths so that is assumes less from the user, and unifies punctuation
Diffstat (limited to 'railties/lib')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/config/application.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/config/application.rb b/railties/lib/rails/generators/rails/app/templates/config/application.rb index 031466cb86..67a38ea1d5 100644 --- a/railties/lib/rails/generators/rails/app/templates/config/application.rb +++ b/railties/lib/rails/generators/rails/app/templates/config/application.rb @@ -21,14 +21,14 @@ module <%= app_const_base %> # Application configuration should go into files in config/initializers # -- all .rb files in that directory are automatically loaded. - # Add additional load paths for your own custom dirs + # Custom directories with classes and modules you want to be autoloadable. # config.autoload_paths += %W( #{config.root}/extras ) # Only load the plugins named here, in the order given (default is alphabetical). - # :all can be used as a placeholder for all plugins not explicitly named + # :all can be used as a placeholder for all plugins not explicitly named. # config.plugins = [ :exception_notification, :ssl_requirement, :all ] - # Activate observers that should always be running + # Activate observers that should always be running. # config.active_record.observers = :cacher, :garbage_collector, :forum_observer # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. |