module Thor::Actions

def empty_directory(destination, config={})


empty_directory "doc"

==== Examples

config:: give :verbose => false to not log the status.
destination:: the relative path to the destination root.
==== Parameters

Creates an empty directory.
def empty_directory(destination, config={})
  action EmptyDirectory.new(self, destination, config)
end