Module: Hanami::Utils::FileList
- Defined in:
- lib/hanami/utils/file_list.rb
Overview
Ordered file list, consistent across operating systems
Class Method Summary collapse
-
.[](*args) ⇒ Object
Return an ordered list of files, consistent across operating systems.
Class Method Details
.[](*args) ⇒ Object
Return an ordered list of files, consistent across operating systems
It has the same signature of Dir.glob, it just guarantees to order the results before to return them.
15 16 17 |
# File 'lib/hanami/utils/file_list.rb', line 15 def self.[](*args) Dir.glob(*args).sort! end |