method
build_conditions
v3.2.8 -
Show latest stable
-
0 notes -
Class: ActionDispatch::Routing::RouteSet
- 1.0.0
- 1.1.6
- 1.2.6
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.8
- 3.0.0
- 3.0.9
- 3.1.0
- 3.2.1 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- 4.0.2 (0)
- 4.1.8 (0)
- 4.2.1
- 4.2.7
- 4.2.9
- 5.0.0.1
- 5.1.7
- 5.2.3
- 6.0.0
- 6.1.3.1
- 6.1.7.7
- 7.0.0
- 7.1.3.2
- 7.1.3.4
- What's this?
build_conditions(current_conditions, req_predicates, path_values)
private
Hide source
# File actionpack/lib/action_dispatch/routing/route_set.rb, line 403 def build_conditions(current_conditions, req_predicates, path_values) conditions = current_conditions.dup verbs = conditions[:request_method] || [] # Rack-Mount requires that :request_method be a regular expression. # :request_method represents the HTTP verb that matches this route. # # Here we munge values before they get sent on to rack-mount. unless verbs.empty? conditions[:request_method] = %[^#{verbs.join('|')}$] end conditions.delete_if { |k,v| !(req_predicates.include?(k) || path_values.include?(k)) } conditions end