diff options
author | Michael Koziarski <michael@koziarski.com> | 2008-02-17 09:11:31 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-02-17 09:11:31 +0000 |
commit | 1a59aa5196703fd0577e6bd27a33fd3906d1c105 (patch) | |
tree | 2071a389a419f1918ce40ec35a60f5773a849517 | |
parent | 4a643f686afc3c8d0d3d9773e418cf9aed670107 (diff) | |
download | rails-1a59aa5196703fd0577e6bd27a33fd3906d1c105.tar.gz rails-1a59aa5196703fd0577e6bd27a33fd3906d1c105.tar.bz2 rails-1a59aa5196703fd0577e6bd27a33fd3906d1c105.zip |
Update generated comments to reflect the fact that config.frameworks works fine with gems now. Closes #11135 [fxn]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8887 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/environments/environment.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb index 79306b0272..b2f5b2b0a5 100644 --- a/railties/environments/environment.rb +++ b/railties/environments/environment.rb @@ -16,8 +16,8 @@ Rails::Initializer.run do |config| # -- all .rb files in that directory are automatically loaded. # See Rails::Configuration for more options. - # Skip frameworks you're not going to use (only works if using vendor/rails). - # To use Rails without a database, you must remove the Active Record framework + # Skip frameworks you're not going to use. To use Rails without a database + # you must remove the Active Record framework. # config.frameworks -= [ :active_record, :active_resource, :action_mailer ] # Only load the plugins named here, in the order given. By default, all plugins |