Continue generating string for the prior segments.
Source Code
# File action_controller/routing/segments.rb, line 19 def continue_string_structure(prior_segments) if prior_segments.empty? interpolation_statement(prior_segments) else new_priors = prior_segments[0..-2] prior_segments.last.string_structure(new_priors) end end
<code/>and<pre/>for code samples.