module FastIgnore::Backports::DirEachChild

Public Instance Methods

children(path) click to toggle source
# File lib/fast_ignore/backports.rb, line 9
def children(path)
  ::Dir.entries(path) - ['.', '..']
end