diff options
author | Marcel Molina <marcel@vernix.org> | 2006-04-26 19:29:35 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2006-04-26 19:29:35 +0000 |
commit | 94e3e22eb8a7e22e68397b10f8fdeac99b0f540c (patch) | |
tree | b0a0bd4aa67c37718e86810999defe3bb006e710 /railties/environments | |
parent | cbded64014e41c386b9c6122da3872d592441f49 (diff) | |
download | rails-94e3e22eb8a7e22e68397b10f8fdeac99b0f540c.tar.gz rails-94e3e22eb8a7e22e68397b10f8fdeac99b0f540c.tar.bz2 rails-94e3e22eb8a7e22e68397b10f8fdeac99b0f540c.zip |
Mention in docs that config.frameworks doesn't work when getting Rails via Gems. Closes #4857. [Alisdair McDiarmid]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4278 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/environments')
-rw-r--r-- | railties/environments/environment.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/environments/environment.rb b/railties/environments/environment.rb index 1dbfbcb3cf..ae63a4aa39 100644 --- a/railties/environments/environment.rb +++ b/railties/environments/environment.rb @@ -13,7 +13,7 @@ require File.join(File.dirname(__FILE__), 'boot') Rails::Initializer.run do |config| # Settings in config/environments/* take precedence those specified here - # Skip frameworks you're not going to use + # Skip frameworks you're not going to use (only works if using vendor/rails) # config.frameworks -= [ :action_web_service, :action_mailer ] # Add additional load paths for your own custom dirs |