diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-06-23 17:23:52 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-06-23 17:23:52 +0000 |
commit | 753cbf1cd45c0f82ba24d70830f5a8581cb55bc0 (patch) | |
tree | 304a56189b8e1272d4f5e1f627ac34bfbfade27d | |
parent | 4de8c63abbcaecbe72b925aedb8196c812463705 (diff) | |
download | rails-753cbf1cd45c0f82ba24d70830f5a8581cb55bc0.tar.gz rails-753cbf1cd45c0f82ba24d70830f5a8581cb55bc0.tar.bz2 rails-753cbf1cd45c0f82ba24d70830f5a8581cb55bc0.zip |
Docfix (closes #8715)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7097 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r-- | railties/lib/initializer.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb index 28ad98bc10..0df2d7c3b7 100644 --- a/railties/lib/initializer.rb +++ b/railties/lib/initializer.rb @@ -155,7 +155,7 @@ module Rails # Requires all frameworks specified by the Configuration#frameworks # list. By default, all frameworks (ActiveRecord, ActiveSupport, - # ActionPack, ActionMailer, and ActionWebService) are loaded. + # ActionPack, ActionMailer, and ActiveResource) are loaded. def require_frameworks configuration.frameworks.each { |framework| require(framework.to_s) } end @@ -388,7 +388,7 @@ module Rails # The list of rails framework components that should be loaded. (Defaults # to <tt>:active_record</tt>, <tt>:action_controller</tt>, # <tt>:action_view</tt>, <tt>:action_mailer</tt>, and - # <tt>:action_web_service</tt>). + # <tt>:active_resource</tt>). attr_accessor :frameworks # An array of additional paths to prepend to the load path. By default, |