Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support for other types of routing constraints | Andrew White | 2013-01-15 | 1 | -5/+1 |
| | | | | | | | | | | | | | | This now allows the use of arrays like this: get '/foo/:action', to: 'foo', constraints: { subdomain: %w[www admin] } or constraints where the request method returns an Fixnum like this: get '/foo', to: 'foo#index', constraints: { port: 8080 } Note that this only applies to constraints on the request - path constraints still need to be specified as Regexps as the various constraints are compiled into a single Regexp. | ||||
* | update AD::Journey to follow Rails coding conventions | Francesco Rodriguez | 2012-12-20 | 1 | -58/+58 |
| | |||||
* | :nodoc: Journey because is not part of the public API [ci skip] | Francesco Rodriguez | 2012-12-19 | 1 | -3/+4 |
| | |||||
* | Remove obsolete Hash extension needed for Ruby 1.8.x support | Andrew White | 2012-12-19 | 1 | -1/+0 |
| | | | | [ci skip] | ||||
* | Integrate Journey into Action Dispatch | Andrew White | 2012-12-19 | 1 | -0/+168 |
Move the Journey code underneath the ActionDispatch namespace so that we don't pollute the global namespace with names that may be used for models. Fixes rails/journey#49. |