Class: Trickster::Copier

Inherits:
Object
  • Object
show all
Defined in:
lib/trickster/copier.rb

Overview

Base copier for copying files from the trickster install to the slideshow location

Direct Known Subclasses

FileCopier, ThemeCopier

Instance Method Summary collapse

Constructor Details

#initialize(install_root, destination_root) ⇒ Copier

install_root

where the root of trickster’s install is, to find files to copy

destination_root

root of where we are copying to



6
7
8
9
# File 'lib/trickster/copier.rb', line 6

def initialize(install_root,destination_root)
  @install_root     = install_root
  @destination_root = destination_root
end