module FileUtils::DryRun

Public Instance Methods

stage(stage_directory, files, options={}) click to toggle source
# File lib/standard/facets/fileutils/stage.rb, line 60
def stage(stage_directory, files, options={})
  options[:dryrun] = true
  FileUtils.stage(stage_directory, files, options={})
end