Changeset 7097
- Timestamp:
- 06/23/07 17:23:52 (2 years ago)
- Files:
-
- trunk/railties/lib/initializer.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/lib/initializer.rb
r6839 r7097 156 156 # Requires all frameworks specified by the Configuration#frameworks 157 157 # list. By default, all frameworks (ActiveRecord, ActiveSupport, 158 # ActionPack, ActionMailer, and Acti onWebService) are loaded.158 # ActionPack, ActionMailer, and ActiveResource) are loaded. 159 159 def require_frameworks 160 160 configuration.frameworks.each { |framework| require(framework.to_s) } … … 389 389 # to <tt>:active_record</tt>, <tt>:action_controller</tt>, 390 390 # <tt>:action_view</tt>, <tt>:action_mailer</tt>, and 391 # <tt>:acti on_web_service</tt>).391 # <tt>:active_resource</tt>). 392 392 attr_accessor :frameworks 393 393