Class: Provider::File::Recursive

Inherits:
Base show all
Defined in:
lib/providers.rb

Instance Attribute Summary

Attributes inherited from Base

#folders

Instance Method Summary collapse

Methods inherited from Base

#initialize, #reverse

Constructor Details

This class inherits a constructor from Provider::File::Base

Instance Method Details

#each(&block) ⇒ Object



68
69
70
71
72
# File 'lib/providers.rb', line 68

def each(&block)
  @folders.each do |folder|
    recursive_each(folder, &block)
  end
end