class Gitenv::AllFiles

Public Instance Methods

files(path) click to toggle source
Calls superclass method
# File lib/gitenv/files/all_files.rb, line 3
def files(path)
  filter path, super(path)
end

Private Instance Methods

filter(path, entries) click to toggle source
# File lib/gitenv/files/all_files.rb, line 9
def filter(path, entries)
  entries.select { |e| File.file? File.join(path, e) }
end