Method: FunWith::Files::DirectoryBuilder#dir

Defined in:
lib/fun_with/files/directory_builder.rb

#dir(*args, &block) ⇒ Object



22
23
24
25
26
# File 'lib/fun_with/files/directory_builder.rb', line 22

def dir( *args, &block )
  descend( *args ) do
    yield if block_given?
  end
end