aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/paths_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Provide a cleaner syntax for paths configuration that does not rely on ↵José Valim2010-10-061-14/+14
| | | | method_missing.
* Removing Metal from Rails 3. wycats2010-05-291-2/+0
| | | | | | | | | | | | | | | | | | | | If you have existing Metals, you have a few options: * if your metal behaves like a middleware, add it to the middleware stack via config.middleware.use. You can use methods on the middleware stack to control exactly where it should go * if it behaves like a Rack endpoint, you can link to it in the router. This will result in more optimal routing time, and allows you to remove code in your endpoint that matches specific URLs in favor of the more powerful handling in the router itself. For the future, you can use ActionController::Metal to get a very fast controller with the ability to opt-in to specific controller features without paying the penalty of the full controller stack. Since Rails 3 is closer to Rack, the Metal abstraction is no longer needed.
* The rake task :environment now loads config/environment.rb instead of ↵José Valim2010-04-291-2/+3
| | | | initializing the application on its own. This fixes [#4492 state:resolved] and also avoids the application being initialized twice in some rake tasks.
* Remove app/views from the load paths [#4226 state:resolved]José Valim2010-04-051-0/+1
|
* Remove invalid builtin tests since we aren't adding that dir to theJoshua Peek2010-03-201-18/+0
| | | | load path anymore
* Add mailers to paths in case someone wants to access it directly and ensures ↵José Valim2010-03-061-3/+4
| | | | deep nesting works in controllers.
* Change generated code to replace faulty commentCarlhuda2010-03-041-1/+1
|
* Fix Sam Ruby's tests and deprecation warningsCarlhuda2010-03-041-2/+2
|
* Refactor railties test, break huge files in smaller chunks and move ↵José Valim2010-01-261-0/+99
initializers to application folder.