instance method
children
Ruby on Rails 8.0.4
Since v3.1.12Signature
children()
No documentation comment.
Source
# File railties/lib/rails/paths.rb, line 136
def children
keys = @root.keys.find_all { |k|
k.start_with?(@current) && k != @current
}
@root.values_at(*keys.sort)
end
Defined in railties/lib/rails/paths.rb line 136
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Paths::Path