method
split_to
v6.0.0 -
Show latest stable
- Class:
ActionDispatch::Routing::Mapper::Mapping
split_to(to)private
No documentation available.
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 343
def split_to(to)
if /#/.match?(to)
to.split("#")
else
[]
end
end