Class: ActionDispatch::Journey::Format
- Inherits:
-
Object
- Object
- ActionDispatch::Journey::Format
- Defined in:
- lib/action_dispatch/journey/visitors.rb
Defined Under Namespace
Classes: Parameter
Constant Summary collapse
- ESCAPE_PATH =
->(value) { Router::Utils.escape_path(value) }
- ESCAPE_SEGMENT =
->(value) { Router::Utils.escape_segment(value) }
Class Method Summary collapse
Instance Method Summary collapse
- #evaluate(hash) ⇒ Object
-
#initialize(parts) ⇒ Format
constructor
A new instance of Format.
Constructor Details
#initialize(parts) ⇒ Format
Returns a new instance of Format.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/action_dispatch/journey/visitors.rb', line 21 def initialize(parts) @parts = parts @children = [] @parameters = [] parts.each_with_index do |object,i| case object when Journey::Format @children << i when Parameter @parameters << i end end end |
Class Method Details
.required_path(symbol) ⇒ Object
13 14 15 |
# File 'lib/action_dispatch/journey/visitors.rb', line 13 def self.required_path(symbol) Parameter.new symbol, ESCAPE_PATH end |
.required_segment(symbol) ⇒ Object
17 18 19 |
# File 'lib/action_dispatch/journey/visitors.rb', line 17 def self.required_segment(symbol) Parameter.new symbol, ESCAPE_SEGMENT end |
Instance Method Details
#evaluate(hash) ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/action_dispatch/journey/visitors.rb', line 36 def evaluate(hash) parts = @parts.dup @parameters.each do |index| param = parts[index] value = hash[param.name] return ''.freeze unless value parts[index] = param.escape value end @children.each { |index| parts[index] = parts[index].evaluate(hash) } parts.join end |