Module: Gelauto::Utils
Instance Method Summary collapse
Instance Method Details
#each_absolute_path(paths) ⇒ Object
3 4 5 6 7 8 9 |
# File 'lib/gelauto/utils.rb', line 3 def each_absolute_path(paths) return to_enum(__method__, paths) unless block_given? paths.each do |path| yield File.(path) end end |