aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* Explicitly define main_app proxyPiotr Sarnacki2011-04-251-2/+1
* stop being clever and just call methods on the Route objectAaron Patterson2011-03-081-1/+1
* Raise ArgumentError if route name is invalid [#6517 state:resolved]Andrew White2011-03-061-0/+2
* use newer class cache apiAaron Patterson2011-03-021-1/+1
* refactor Reference to a ClassCache object, fix lazy lookup in Middleware so t...Aaron Patterson2011-03-011-2/+3
* Fix assert_recognizes with block constraints [#5805 state:resolved]Andrew White2011-02-131-1/+3
* use raise to create exceptions and to set the backtraceAaron Patterson2011-01-121-1/+1
* The redirect routing method now allows for a hash of options which only chang...Josh Kalderimis2010-11-301-44/+18
* Speed up subdomain and domain calculus.José Valim2010-11-231-14/+6
* :subdomain, :domain and :tld_length options can now be used in url_for, allow...Josh Kalderimis2010-11-231-6/+32
* Properly reload routes defined in class definitionPiotr Sarnacki2010-09-301-0/+1
* Allow mounting engines at '/'Piotr Sarnacki2010-09-301-1/+1
* Merge remote branch 'miloops/warnings'José Valim2010-09-291-1/+1
|\
| * Use redefine_method instead define_method, it may be already defined.Emilio Tagua2010-09-281-1/+1
| * Move uri parser to AS as URI.parser method to reuse it in AP and ARes.Emilio Tagua2010-09-271-8/+2
* | Move uri parser to AS as URI.parser method to reuse it in AP and ARes.Emilio Tagua2010-09-281-8/+2
* | Fix tests on 1.9.2.José Valim2010-09-281-5/+0
* | Properly initialize variables inside the initialize method.José Valim2010-09-271-3/+8
|/
* Define @_routes inside method, makes more sense and will be initialized when ...Emilio Tagua2010-09-271-1/+1
* Remove warning "URI.unescape is obsolete" from actionpack.Emilio Tagua2010-09-271-4/+2
* Merge remote branch 'miloops/warnings'José Valim2010-09-271-2/+12
|\
| * Remove old method before redefining it.Emilio Tagua2010-09-271-0/+2
| * Remove warning "URI.unescape is obsolete" from actionpack.Emilio Tagua2010-09-271-2/+10
* | Hash#empty? is faster than Enumerable#any? when used on a Hash.thedarkone2010-09-271-1/+1
* | No need to create a separate lambda for each call.thedarkone2010-09-271-15/+14
|/
* Refactor routing methods.Emilio Tagua2010-09-221-6/+1
* Add RouteSet#appendCarl Lerche2010-09-171-4/+12
* Change app to main_app in mounted_helpersPiotr Sarnacki2010-09-081-1/+1
* Do not require passing :app to mounted helpers, it's actually useless and not...Piotr Sarnacki2010-09-081-1/+1
* Removed deprecated RouteSet API, still many tests failPiotr Sarnacki2010-09-051-9/+3
* Implemented RouteSet#default_scope, which allows to set the scope for the ent...Piotr Sarnacki2010-09-031-2/+6
* Move RoutesProxy to separate filePiotr Sarnacki2010-09-031-32/+0
* This was used only to clear warning in ActionMailer tests, it shouldn't be do...Piotr Sarnacki2010-09-031-5/+0
* Refactor RoutesProxy to avoid using _with_routes in helpersPiotr Sarnacki2010-09-031-1/+1
* Refactor ActionMailer to not use hide_actionsPiotr Sarnacki2010-09-031-1/+6
* Fix generating urls with mounted helpers in view contextPiotr Sarnacki2010-09-031-1/+1
* For view_context we need to initialize RoutesProxy in context of controller, ...Piotr Sarnacki2010-09-031-2/+4
* We don't need delegating polymorphic_url and polymorphic_path anymorePiotr Sarnacki2010-09-031-10/+6
* Add mounted_helpers to routesPiotr Sarnacki2010-09-031-0/+59
* Routes refactoring:Piotr Sarnacki2010-09-031-1/+1
* Extended url_for to handle specifying which router should be used.Piotr Sarnacki2010-09-031-12/+12
* Get rid of :skip_prefix options in routesPiotr Sarnacki2010-09-031-6/+3
* New way of generating urls for Application from Engine.Piotr Sarnacki2010-09-031-2/+2
* Use env['action_dispatch.routes'] to determine if we should generate prefix o...Piotr Sarnacki2010-09-031-6/+14
* Revert "Setup explicit requires for files with exceptions. Removed them from ...José Valim2010-09-021-1/+0
* Setup explicit requires for files with exceptions. Removed them from autoload...Łukasz Strzałkowski2010-09-021-0/+1
* Support routing constraints in functional testsAndrew White2010-08-201-2/+2
* Avoid potentially expensive inspect call in router. [#4491 state:resolved]Samuel Lebeau2010-08-031-3/+6
* options could be of any kind of Hash (Hash, HashWithIndifferentAccess or Orde...Santiago Pastorino2010-07-211-1/+1
* Fixed a globbed route issue where slashes were being escaped, causing assert_...Brian Rose2010-07-211-1/+2