instance method
children
Ruby on Rails 4.2.9
Since v3.1.12Signature
children()
No documentation comment.
Source
# File railties/lib/rails/paths.rb, line 126
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 126
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Paths::Path