Class: ActionDispatch::Journey::Path::Pattern::MatchData

Inherits:
Object
  • Object
show all
Defined in:
actionpack/lib/action_dispatch/journey/path/pattern.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(names, offsets, match) ⇒ MatchData

Returns a new instance of MatchData.



139
140
141
142
143
# File 'actionpack/lib/action_dispatch/journey/path/pattern.rb', line 139

def initialize(names, offsets, match)
  @names   = names
  @offsets = offsets
  @match   = match
end

Instance Attribute Details

#namesObject (readonly)

Returns the value of attribute names



137
138
139
# File 'actionpack/lib/action_dispatch/journey/path/pattern.rb', line 137

def names
  @names
end

Instance Method Details

#[](x) ⇒ Object



149
150
151
152
# File 'actionpack/lib/action_dispatch/journey/path/pattern.rb', line 149

def [](x)
  idx = @offsets[x - 1] + x
  @match[idx]
end

#capturesObject



145
146
147
# File 'actionpack/lib/action_dispatch/journey/path/pattern.rb', line 145

def captures
  (length - 1).times.map { |i| self[i + 1] }
end

#lengthObject



154
155
156
# File 'actionpack/lib/action_dispatch/journey/path/pattern.rb', line 154

def length
  @offsets.length
end

#post_matchObject



158
159
160
# File 'actionpack/lib/action_dispatch/journey/path/pattern.rb', line 158

def post_match
  @match.post_match
end

#to_sObject



162
163
164
# File 'actionpack/lib/action_dispatch/journey/path/pattern.rb', line 162

def to_s
  @match.to_s
end