module Thor::Actions

def destination_root=(root)


directory where the script was invoked and expanded.
Sets the root for this thor class. Relatives path are added to the
def destination_root=(root)
  @destination_stack ||= []
  @destination_stack[0] = File.expand_path(root || '')
end