Class: Vera::Lister
- Inherits:
-
Object
- Object
- Vera::Lister
- Defined in:
- lib/vera/lister.rb
Class Method Summary collapse
Class Method Details
.all_files(path, ext) ⇒ Object
5 6 7 8 9 |
# File 'lib/vera/lister.rb', line 5 def self.all_files(path, ext) Dir.entries(path) .map { |file| { path: "#{path}/#{file}", filename: file } } .select { |file| ext == File.extname(file[:filename]).gsub('.', '') } end |