Class: BagIt::StandardFileFinder

Inherits:
FileFinder show all
Defined in:
lib/bagit/bag.rb

Class Method Summary collapse

Class Method Details

.find(dir) ⇒ Object



18
19
20
# File 'lib/bagit/bag.rb', line 18

def self.find(dir)
  Dir[File.join(dir, "**", "*")].select { |f| File.file? f }
end