method

entries

ruby latest stable - Class: Bundler::FileUtils::Entry_

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

entries()
public

No documentation available.

# File lib/bundler/vendor/fileutils/lib/fileutils.rb, line 1193
    def entries
      opts = {}
      opts[:encoding] = ::Encoding::UTF_8 if fu_windows?
      Dir.entries(path(), opts)           .reject {|n| n == '.' or n == '..' }           .map {|n| Entry_.new(prefix(), join(rel(), n.untaint)) }
    end