aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/routing_url_for.rb
Commit message (Collapse)AuthorAgeFilesLines
* Hash Syntax to 1.9 related changesAvnerCohen2012-10-291-7/+7
|
* fix tests on Ruby 2.0.0Aaron Patterson2012-09-061-1/+1
|
* Don't require action_dispatch in ActionView::UrlHelpersPiotr Sarnacki2012-08-281-0/+107
ActionDispatch::Routing::UrlFor was always required in UrlHelpers. This was changed by splitting previous implementation of UrlHelper into 2 modules: ActionView::Helpers::UrlHelper and ActionView::Routing::UrlHelper. The former one keeps only basic implementation of url_for. The latter adds features that allow to use routes and is only required when url_helpers or mounted_helpers are required.