aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/paths_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fix deprecation message in test for Path#childrenCarlos Antonio da Silva2012-10-291-1/+1
|
* Add test to deprecation of Path#childrenRafael Mendonça França2012-10-291-0/+6
|
* Merge pull request #7587 from elia/fix-too-eager-loadingRafael Mendonça França2012-10-291-0/+3
| | | | | | Should not eager_load app/assets Conflicts: railties/CHANGELOG.md
* Revert "Allow loading external route files from the router"José Valim2012-06-291-2/+0
| | | | | | | | | | | | | | This reverts commit 6acebb38bc0637bc05c19d87f8767f16ce79189b. Usage of this feature did not reveal any improvement in existing apps. Conflicts: actionpack/lib/action_dispatch/routing/mapper.rb guides/source/routing.textile railties/lib/rails/engine.rb railties/lib/rails/paths.rb railties/test/paths_test.rb
* Allow loading external route files from the routerJose and Yehuda2012-04-251-0/+2
| | | | | | | | | This feature enables the ability to load an external routes file from the router via: draw :filename External routes files go in +config/routes+. This feature works in both engines and applications.
* Remove the dependent_restrict_raises configuration if activerecord isRafael Mendonça França2012-02-011-1/+0
| | | | not preset
* convert railties to use AS::TestCaseAaron Patterson2012-01-051-1/+1
|
* Rails::Plugin has goneSantiago Pastorino2012-01-031-1/+0
|
* assets.cache_store now defaults to filesystem. You will want to share ↵José Valim2011-07-121-1/+0
| | | | tmp/assets_cache between deploys.
* Solve the RAILS_ENV problem in the railties tests in a more generic wayJon Leighton2011-06-061-0/+4
|
* Removing deprecated config.paths.app.controller APIGuillermo Iguaran2011-05-241-1/+1
|
* 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.