1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_controller
Carlhuda c1304098cc Reorganize autoloads:
* A new module (ActiveSupport::Autoload) is provide that extends
    autoloading with new behavior.
  * All autoloads in modules that have extended ActiveSupport::Autoload
    will be eagerly required in threadsafe environments
  * Autoloads can optionally leave off the path if the path is the same
    as full_constant_name.underscore
  * It is possible to specify that a group of autoloads live under an
    additional path. For instance, all of ActionDispatch's middlewares
    are ActionDispatch::MiddlewareName, but they live under 
    "action_dispatch/middlewares/middleware_name"
  * It is possible to specify that a group of autoloads are all found
    at the same path. For instance, a number of exceptions might all
    be declared there.
  * One consequence of this is that testing-related constants are not
    autoloaded. To get the testing helpers for a given component,
    require "component_name/test_case". For instance, "action_controller/test_case".
  * test_help.rb, which is automatically required by a Rails application's
    test helper, requires the test_case.rb for all active components, so
    this change will not be disruptive in existing or new applications.
2009-12-02 20:01:08 -08:00
..
caching Caching refactoring 2009-10-29 00:44:12 -04:00
deprecated Reorganize autoloads: 2009-12-02 20:01:08 -08:00
dispatch Use Rails.application where we want a valid rack app 2009-10-16 19:04:28 -05:00
metal Reorganize autoloads: 2009-12-02 20:01:08 -08:00
testing Reorganize autoloads: 2009-12-02 20:01:08 -08:00
vendor Reorganize autoloads: 2009-12-02 20:01:08 -08:00
base.rb Reorganize autoloads: 2009-12-02 20:01:08 -08:00
caching.rb Reorganize autoloads: 2009-12-02 20:01:08 -08:00
deprecated.rb Group together all the old routing dsl logic 2009-10-20 10:46:27 -05:00
metal.rb Update AC::Middleware to play better with the normal AC::Metal stack. This required stopping to use #call for non-rack-related stuff 2009-11-05 15:38:25 -08:00
middleware.rb Update AC::Middleware to play better with the normal AC::Metal stack. This required stopping to use #call for non-rack-related stuff 2009-11-05 15:38:25 -08:00
notifications.rb AS::Notifications.subscribe blocks are now yielded the arguments to pass to AS::Notifications::Event.new 2009-10-27 21:04:53 -07:00
polymorphic_routes.rb Make polymorphic_url work with symbols again and refactor it [#1384 status:resolved] 2009-10-28 14:13:48 -05:00
record_identifier.rb Clean up render @object a bit more. 2009-08-07 00:52:13 -03:00
test_case.rb Reorganize autoloads: 2009-12-02 20:01:08 -08:00
translation.rb Fix some Ruby warnings: `*' interpreted as argument prefix 2009-11-09 14:46:29 -05:00
url_rewriter.rb Move Routing into AD 2009-10-20 10:14:46 -05:00