aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* Use internal instance variable naming scheme for mounted URL helper proxiesSam Pohlenz2012-09-091-1/+1
* refactor route_set `generate_extras` functionalityschneems2012-08-281-17/+9
* Add Missing Keys from Journey on failed URL formatschneems2012-08-281-4/+4
* Further refactor build_conditions in route setCarlos Antonio da Silva2012-08-101-5/+3
* Fix handling SCRIPT_NAME from within mounted engine'sPiotr Sarnacki2012-08-111-5/+12
* RouteSet: refactor internalsBogdan Gusiev2012-08-101-10/+7
* RouteSet: cleanup some unneeded compexityBogdan Gusiev2012-08-041-16/+7
* Renamed _path_segments to _recallBogdan Gusiev2012-08-041-2/+2
* Simplify logical statementBogdan Gusiev2012-08-041-4/+2
* load active_support/core_ext/object/blank in active_support/railsXavier Noria2012-08-021-1/+0
* Fix class_eval without __FILE__ and __LINE__.kennyj2012-07-181-1/+1
* Revert "Allow loading external route files from the router"José Valim2012-06-291-2/+0
* Simplify logic to initialize valid conditions in RouteSetCarlos Antonio da Silva2012-05-311-7/+3
* Merge pull request #2549 from trek/RoutingErrorForMissingControllersAaron Patterson2012-05-211-3/+7
|\
| * When a route references a missing controller, raise ActionController::Routing...Trek Glowacki2011-08-161-3/+7
* | Return 400 Bad Request for URL paths with invalid encoding.Andrew White2012-05-201-0/+9
* | Don't ignore nil positional arguments for url helpers - fixes #6196.Andrew White2012-05-101-1/+1
* | Refactor Generator class to not rely on in-place editing the controllerAndrew White2012-05-091-5/+10
* | Fix bug when url_for changes controller.Nikita Beloglazov2012-05-091-2/+2
* | Fix that optimized named routes should also work as singleton methods on the ...Jeremy Kemper2012-05-061-1/+2
* | RouteSet: optimize routes generation when globbing is usedBogdan Gusiev2012-05-031-2/+5
* | RouteSet: remove some code dupsBogdan Gusiev2012-05-021-19/+10
* | ActionPack routes: remove some useless code.Bogdan Gusiev2012-05-021-26/+4
* | Allow loading external route files from the routerJose and Yehuda2012-04-251-0/+2
* | Refactor hash creation in routesetCarlos Antonio da Silva2012-04-241-3/+4
* | RouteSet: decomplecting a way to handle positional argsBogdan Gusiev2012-04-241-26/+20
* | RouteSet: simplify routes helpers generation codeBogdan Gusiev2012-04-241-13/+21
* | documents the contract for the argument of AD::Routing::RouteSet#url_forXavier Noria2012-04-051-0/+1
* | Fix url_for when options is nilRafael Mendonça França2012-04-051-1/+1
* | don't pass unnecessary argumentSergey Nartimov2012-03-021-2/+2
* | Optimize url helpers.Sergey Nartimov + José Valim2012-03-021-9/+8
* | Optimize path helpers.José Valim2012-03-021-11/+54
* | Fix the assert_recognizes test method so that it works when there areMatt Fawcett2012-02-241-0/+2
* | Avoid inspecting the whole route set, closes #1525José Valim2012-02-231-0/+6
* | Remove reference to rails_legacy_mapper, which isn't compatible with 3.2 #5022johndouthat2012-02-181-2/+1
* | Fix GH #4720. Routing problem with nested namespace and already camelized con...kennyj2012-02-101-0/+5
* | Fixed force_ssl redirects to include original query paramsRyan McGeary2012-02-071-0/+1
* | Fix url_for method's behavior when it is called with :controller option which...kennyj2012-02-071-1/+1
* | Merge pull request #3775 from karevn/masterAaron Patterson2012-01-241-1/+2
|\ \
| * | Fix: when using subdomains and constraints, request params were not passed to...karevn2011-11-281-1/+2
* | | Added custom regexps to ASTs that have literal nodes on either side ofAaron Patterson2012-01-231-1/+20
* | | We should finalize the routes as soon as possible and not wait for the contro...José Valim2012-01-061-2/+0
* | | Clean up routes inclusion and add some comments for the next soul that decide...José Valim2012-01-031-30/+37
* | | be explicit about where helpers are installedAaron Patterson2011-12-301-1/+1
* | | stop using __send__ and just module eval in the extensionsAaron Patterson2011-12-291-3/+2
* | | we know the classes will be a list, so *tell* it to respond to eachAaron Patterson2011-12-291-3/+3
* | | don't need the begin / endAaron Patterson2011-12-291-21/+17
* | | avoid extra method calls by just defining the delegateAaron Patterson2011-12-291-2/+3
* | | don't use instance eval, just reference variables so we don't have toAaron Patterson2011-12-291-10/+11
* | | removing dead code.Aaron Patterson2011-12-291-12/+3