1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
Commit graph

14 commits

Author SHA1 Message Date
Aaron Patterson
3b908cba28 fewer operations on the options hash
since we pass `as` down, then we won't have to do an insert / delete
dance with the options hash
2014-08-13 18:34:21 -07:00
Aaron Patterson
0777b17daf RouteSet should be in charge of constructing the dispather
Now we can override how requests are dispatched in the routeset object
2014-07-15 14:53:08 -07:00
Aaron Patterson
4097ff5c5f use the factory method to construct the mapping 2014-06-03 11:42:45 -07:00
Aaron Patterson
74b73f132a Mapping never actually uses @set, so rm 2014-05-29 16:13:29 -07:00
Aaron Patterson
3a102a58f4 use a parser to extract the group parts from the path 2014-05-29 14:57:48 -07:00
Carl Lerche
afa68eb176 Raise a helpful error message on #mount misuse 2012-07-10 16:17:02 -07:00
Rafael Mendonça França
7406d69ecc Remove more tests related to draw external routes files
Related with 5e7d6bba79
2012-06-29 14:33:09 -03:00
Yehuda Katz
47be2f101c Fix the build 2012-04-25 16:43:01 -05:00
Jose and Yehuda
56cdc81c08 Remove default match without specified method
In the current router DSL, using the +match+ DSL
method will match all verbs for the path to the
specified endpoint.

In the vast majority of cases, people are
currently using +match+ when they actually mean
+get+. This introduces security implications.

This commit disallows calling +match+ without
an HTTP verb constraint by default. To explicitly
match all verbs, this commit also adds a
:via => :all option to +match+.

Closes #5964
2012-04-24 22:52:26 -05:00
Aaron Patterson
a08bee7841 all routes can be stored in the Journey Routes object 2011-09-12 16:50:48 -07:00
Aaron Patterson
ba43b9bf5f fixing wildcard path matching when wildcard is inside parenthesis 2011-07-26 17:33:22 -07:00
Erik Michaels-Ober
b9c9142603 Allow a route to have :format => true
When format is true, it is mandatory (as opposed to :format => false).
This is currently not possible with resource routes, which automatically
make format optional by default.
2011-07-25 11:37:25 -07:00
Sebastian Martinez
52351bcfeb Remove 'warning: ambiguous first argument' when running ActionPack tests
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
2011-03-29 10:23:10 -03:00
Prem Sichanugrist
84a4ef63a4 Move mapper_test to the appropriate location
It seems like in 89c5b9aee7 Aaron actually put the test in action_dispatch folder. However, there's already a `test/dispatch` directory which I think it's more appropriate.

Signed-off-by: Andrew White <andyw@pixeltrix.co.uk>
2011-03-29 10:12:17 +01:00
Renamed from actionpack/test/action_dispatch/routing/mapper_test.rb (Browse further)