aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/console_app.rb
Commit message (Collapse)AuthorAgeFilesLines
* Move console stuff to its own directory.José Valim2010-01-231-31/+0
|
* Extract routes reloading responsibilities from application and load them ↵José Valim2010-01-231-2/+1
| | | | just upon a request.
* Reinstate explicit active_support/test_case require since console_app ↵Jeremy Kemper2010-01-041-0/+1
| | | | interacts with a non-autoloaded constant
* Autoload AS test caseJoshua Peek2010-01-041-1/+0
|
* Move route reloading into railtiesJoshua Peek2009-12-141-1/+1
|
* Don't require AD test_caseJoshua Peek2009-12-121-1/+0
|
* Reorganize autoloads:Carlhuda2009-12-021-0/+1
| | | | | | | | | | | | | | | | | | | | | * 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.
* Move middleware and route configuration from AC::Dispatcher to Rails ↵Joshua Peek2009-09-261-1/+1
| | | | application object
* Allow integration test rack app to be set with "@app" ivar instead of using ↵Joshua Peek2009-09-261-1/+2
| | | | open_session
* Move default middleware stack into initializerJoshua Peek2009-09-261-1/+1
|
* Move railties/lib/* into railties/lib/*Yehuda Katz + Carl Lerche2009-09-241-0/+31