aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/route_set.rb
Commit message (Expand)AuthorAgeFilesLines
* Remove deprecated usage of string keys in URL helpersRafael Mendonça França2015-01-041-17/+1
* Remove deprecated `only_path` option on `*_path` helpersRafael Mendonça França2015-01-041-28/+1
* Remove deprecate `*_path` helpers in email viewsRafael Mendonça França2015-01-041-25/+4
* Remove deprecated `NamedRouteCollection#helpers`Rafael Mendonça França2015-01-041-8/+0
* allow URL helpers to work with optional scopesAlex Robbin2014-12-131-1/+1
* Fix handling of positional url helper arguments when format is falseTatiana Soukiassian2014-12-131-2/+8
* Merge pull request #17862 from lucasmazza/lm-hide-actionRafael Mendonça França2014-12-021-0/+2
* Pass symbol as an argument instead of a blockErik Michaels-Ober2014-11-291-2/+2
* sets script_name to always be a string.JONBRWN2014-11-251-1/+1
* Merge branch 'deprecate-string-options-in-url-helpers'Sean Griffin2014-11-241-1/+17
|\
| * Deprecate string options in URL helpersMelanie Gilman2014-11-241-1/+17
* | let mailer templates generate URLs by default [Xavier Noria, Richard Schneeman]Xavier Noria2014-11-241-2/+6
|/
* edit pass over all warningsXavier Noria2014-10-281-1/+4
* let's warn with heredocsXavier Noria2014-10-281-11/+14
* Typos in the deprecation messageGodfrey Chan2014-10-281-2/+2
* Deprecate the `only_path` option on `*_path` helpers.Godfrey Chan2014-10-281-2/+26
* Revert "Merge pull request #16966 from why-el/symbolize-path-params"Rafael Mendonça França2014-09-251-1/+0
* Ensure named path params are symbols (Fixes #16958)Mohamed Wael Khobalatte2014-09-251-0/+1
* Deprecate NamedRouteCollection#helpers.Lucas Mazza2014-08-171-0/+5
* avoid testing only_pathAaron Patterson2014-08-041-0/+4
* always return a string from find_script_nameAaron Patterson2014-08-011-2/+2
* do a hash lookup for collision detectionAaron Patterson2014-07-311-0/+4
* remove useless deupAaron Patterson2014-07-301-1/+1
* remove alias_method_chainAaron Patterson2014-07-301-4/+2
* avoid instrospection on the moduleAaron Patterson2014-07-301-1/+2
* fix variable nameAaron Patterson2014-07-301-3/+3
* split path_helpers and url_helpersAaron Patterson2014-07-301-18/+25
* `add` will remove the method if it exists alreadyAaron Patterson2014-07-301-1/+0
* Deprecate `*_path` methods in mailers@schneems and @sgrif2014-07-301-48/+72
* oops! :bomb:Aaron Patterson2014-07-291-1/+1
* ask the named routes collection if the route is definedAaron Patterson2014-07-291-0/+4
* helpers should be a Set so it doesn't grow unboundedAaron Patterson2014-07-291-4/+12
* pass the module to define_named_route_methodsAaron Patterson2014-07-291-7/+7
* only ask for the routes module onceAaron Patterson2014-07-291-2/+4
* eval_block should be privateAaron Patterson2014-07-291-0/+1
* remove the mounted? methodAaron Patterson2014-07-281-5/+1
* pass the route name to define_url_helperAaron Patterson2014-07-171-21/+21
* use a strategy object for generating urls in named helpersAaron Patterson2014-07-171-13/+24
* we do not need to dup the options hash, it is private and a new object each callAaron Patterson2014-07-161-2/+2
* extract inner options before delegating to the helperAaron Patterson2014-07-161-7/+13
* RouteSet should be in charge of constructing the dispatherAaron Patterson2014-07-151-0/+4
* Remove unused param 'separators' from RouteSet#build_pathMindaugas Mozūras2014-06-151-2/+2
* pass the parsed path from mapper to the StrexpAaron Patterson2014-05-291-3/+6
* add an alternate constructor to Strexp that takes a stringAaron Patterson2014-05-291-1/+1
* PARAMETERS_KEY is only used in the request, so move the constant thereAaron Patterson2014-05-271-2/+0
* move path_parameter encoding check to the request objectAaron Patterson2014-05-271-10/+1
* dispatcher doesn't need `call` anymoreAaron Patterson2014-05-271-4/+0
* give all endpoints a superclassAaron Patterson2014-05-271-3/+10
* pass a request to `matches?` so we can avoid creating excess requestsAaron Patterson2014-05-251-1/+1
* push is_a?(Dispatcher) check in to one placeAaron Patterson2014-05-241-5/+3