aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/mapper.rb
Commit message (Expand)AuthorAgeFilesLines
* return early if we have a valid controller nameAaron Patterson2014-05-281-5/+5
* trade 2 is_a? checks for a nil checkAaron Patterson2014-05-281-2/+4
* invert logic to remove nil? and exclude? checks (use ruby rather than AS when...Aaron Patterson2014-05-281-6/+6
* fewer blank? callsAaron Patterson2014-05-281-4/+4
* reduce action.blank? callsAaron Patterson2014-05-281-4/+6
* reduce blank? checksAaron Patterson2014-05-281-4/+9
* extract controller checks to methodsAaron Patterson2014-05-281-19/+26
* set defaults at the top so we can avoid the ||= testAaron Patterson2014-05-281-6/+9
* rm reset_parameters because we automatically do it from 9ca4839aAaron Patterson2014-05-271-2/+0
* call `serve` with the request on dispatchersAaron Patterson2014-05-271-9/+10
* constraints class does not need the request class anymoreAaron Patterson2014-05-271-4/+4
* give all endpoints a superclassAaron Patterson2014-05-271-17/+13
* push is_a check up to where the Constraints object is allocatedAaron Patterson2014-05-261-5/+10
* pass the request object to the applicationAaron Patterson2014-05-251-3/+2
* pass a request to `matches?` so we can avoid creating excess requestsAaron Patterson2014-05-251-6/+5
* Constraints#app should never return another Constraints object, so switch to ...Aaron Patterson2014-05-251-1/+1
* eliminate dispatcher is_a checksAaron Patterson2014-05-241-8/+14
* push is_a?(Dispatcher) check in to one placeAaron Patterson2014-05-241-0/+7
* Always construct route objects with Constraint objectsAaron Patterson2014-05-241-5/+3
* unwrap the constraints object on initialization, eliminate loopsAaron Patterson2014-05-241-0/+9
* Constraints contructor should always return a Constraints objectAaron Patterson2014-05-231-9/+5
* default value is never used, so make it requiredAaron Patterson2014-05-231-1/+1
* push options decomposition up so we can extractAaron Patterson2014-05-231-20/+13
* glob_param is never used, so rmAaron Patterson2014-05-231-1/+1
* use symbol keys for path_parametersAaron Patterson2014-05-221-1/+1
* drop || test for cases that do not need itAaron Patterson2014-05-131-1/+3
* extend with a module then use define_methodAaron Patterson2014-05-131-7/+4
* Do not use short-circuit returnRafael Mendonça França2014-05-041-2/+3
* Merge pull request #11166 from xavier/callable_constraint_verificationRafael Mendonça França2014-05-041-0/+7
|\
| * Verify that route constraints respond to the expected messages instead of sil...Xavier Defrang2013-06-281-0/+7
* | Tiny follow up to #14915 [ci skip]Robin Dupret2014-05-021-19/+18
* | [skip ci] Document: required `via` option in `match` routing method.Juan David Pastas2014-04-301-20/+37
* | Only make deeply nested routes shallow when parent is shallowAndrew White2014-04-111-1/+14
* | Merge branch 'master' of github.com:rails/docrailsVijay Dev2014-03-291-0/+4
|\ \
| * | Mention required glob param name in match docs for mapperEarl St Sauver2014-03-201-0/+4
* | | Use nested_scope? not shallow? to determine whether to copy optionsAndrew White2014-03-161-1/+5
* | | Copy shallow options from normal options when using scopeAndrew White2014-03-081-1/+2
* | | Pull namespace defaults out of the options hashAndrew White2014-03-081-3/+10
* | | Only use shallow nested scope when depth is > 1Andrew White2014-03-081-20/+23
* | | Move setting :scope_level_resource to resource_scopeAndrew White2014-03-081-7/+7
|/ /
* | Set the :shallow_path as each scope is generatedAndrew White2014-02-091-1/+12
* | Transform dashes to underscores in resource route namesByron Bischoff2014-01-251-4/+4
* | Automatically convert dashes to underscores in shorthand routesMikko Johansson2014-01-201-0/+1
* | Automatically convert dashes to underscores for url helpersAmr Tamimi2014-01-201-1/+2
* | Allow an absolute controller path inside a module scopeAndrew White2014-01-051-2/+6
* | Fix method redefined warning message in mapper.rbAndrew White2013-12-291-2/+3
* | Fix mounting engines inside a resources blockPiotr Sarnacki2013-12-101-1/+2
* | Merge remote-tracking branch 'docrails/master'Xavier Noria2013-11-241-1/+1
|\ \
| * | Change syntax format for example returned valuesPrem Sichanugrist2013-11-111-1/+1
* | | Avoid hash lookups for building an array of required defaultsCarlos Antonio da Silva2013-11-151-2/+3