Sha256: 4c2502a2257d6d4c525e6219702144b777e91d642690b8aa5db2c9c9ced4328e
Contents?: true
Size: 1019 Bytes
Versions: 2
Compression:
Stored size: 1019 Bytes
Contents
module SmallCage::Commands class Export < SmallCage::Commands::Base def execute target = Pathname.new(@opts[:path]) unless target.exist? raise target.to_s + " does not exist." end loader = SmallCage::Loader.new(target) root = loader.root if @opts[:out].nil? out = root + ("./_smc/tmp/export/" + Time.now.strftime("%Y%m%d%H%M%S")) else out = Pathname.new(@opts[:out]) end if out.exist? raise out.to_s + " already exist." end FileUtils.makedirs(out) out = out.realpath # TODO create empty directories loader.each_not_smc_file do |docpath| dir = Pathname.new(docpath.uri).parent outdir = out + ("." + dir.to_s) FileUtils.makedirs(outdir) FileUtils.cp(docpath.path, outdir) puts "A " + docpath.uri unless quiet? end unless quiet? puts "" puts "All contents exported to:" puts " #{out.to_s}" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
smallcage-0.2.6 | lib/smallcage/commands/export.rb |
smallcage-0.2.5 | lib/smallcage/commands/export.rb |