Class: Pakman::Copier

Inherits:
Object
  • Object
show all
Includes:
LogUtils::Logging
Defined in:
lib/pakman/copier.rb

Instance Method Summary collapse

Instance Method Details

#copy_pak(manifestsrc, pakpath) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/pakman/copier.rb', line 10

def copy_pak( manifestsrc, pakpath )

  start = Time.now

  pakname = Pakman.pakname_from_file( manifestsrc )

  logger.info "Copying template pack '#{pakname}'"

  ## todo: after depreciate change back to just load_file
  manifest = Manifest.load_file_v2( manifestsrc )

  manifest.each do |entry|
    dest   = entry[0]
    source = entry[1]

    # get full (absolute) path and make sure path exists
    destfull = File.expand_path( dest, pakpath )
    destpath = File.dirname( destfull )
    FileUtils.makedirs( destpath ) unless File.directory?( destpath )

    logger.debug "destfull=>#{destfull}<"
    logger.debug "destpath=>#{destpath}<"

    logger.info "  Copying to #{dest} from #{source}..."
    FileUtils.copy( source, destfull )
  end

  logger.info "Done (in #{Time.now-start} s)."
end