Class: ActionDispatch::Routing::Mapper::Constraints
- Defined in:
- actionpack/lib/action_dispatch/routing/mapper.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#app ⇒ Object
readonly
Returns the value of attribute app.
-
#constraints ⇒ Object
readonly
Returns the value of attribute constraints.
Class Method Summary collapse
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app, constraints, request) ⇒ Constraints
constructor
A new instance of Constraints.
- #matches?(env) ⇒ Boolean
Constructor Details
#initialize(app, constraints, request) ⇒ Constraints
Returns a new instance of Constraints.
29 30 31 |
# File 'actionpack/lib/action_dispatch/routing/mapper.rb', line 29 def initialize(app, constraints, request) @app, @constraints, @request = app, constraints, request end |
Instance Attribute Details
#app ⇒ Object (readonly)
Returns the value of attribute app
27 28 29 |
# File 'actionpack/lib/action_dispatch/routing/mapper.rb', line 27 def app @app end |
#constraints ⇒ Object (readonly)
Returns the value of attribute constraints
27 28 29 |
# File 'actionpack/lib/action_dispatch/routing/mapper.rb', line 27 def constraints @constraints end |
Class Method Details
Instance Method Details
#call(env) ⇒ Object
44 45 46 |
# File 'actionpack/lib/action_dispatch/routing/mapper.rb', line 44 def call(env) matches?(env) ? @app.call(env) : [ 404, {'X-Cascade' => 'pass'}, [] ] end |
#matches?(env) ⇒ Boolean
33 34 35 36 37 38 39 40 41 42 |
# File 'actionpack/lib/action_dispatch/routing/mapper.rb', line 33 def matches?(env) req = @request.new(env) @constraints.all? do |constraint| (constraint.respond_to?(:matches?) && constraint.matches?(req)) || (constraint.respond_to?(:call) && constraint.call(*constraint_args(constraint, req))) end ensure req.reset_parameters end |