class Bundler::Thor::Actions::EmptyDirectory

def initialize(base, destination, config = {})


config:: give :verbose => false to not log the status.
destination:: Relative path to the destination of this file
source:: Relative path to the source of this file
base:: A Bundler::Thor::Base instance
==== Parameters

Initializes given the source and destination.
def initialize(base, destination, config = {})
  @base, @config   = base, {:verbose => true}.merge(config)
  self.destination = destination
end