class Dir

rbfind/core.rb – Additional core functions

Constants

SPECIAL_DIRS
SUPER_DIR

Public Instance Methods

children() click to toggle source
# File lib/rbfind/core.rb, line 19
                             def children
  entries - SPECIAL_DIRS
end
each_child() { |f| ... } click to toggle source
# File lib/rbfind/core.rb, line 11
                               def each_child
  s = SPECIAL_DIRS.dup
  each { |f|
    next if s.delete f
    yield f
  }
end