method

children

v3.1.0 - Show latest stable - Class: Rails::Paths::Path
children()
public

No documentation available.

# File railties/lib/rails/paths.rb, line 143
      def children
        keys = @root.keys.select { |k| k.include?(@current) }
        keys.delete(@current)
        @root.values_at(*keys.sort)
      end