Class: Provider::File::Recursive

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

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



54
55
56
57
58
# File 'lib/providers.rb', line 54

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