Class: Minke::Config::Copy

Inherits:
Object
  • Object
show all
Defined in:
lib/minke/config/config.rb

Overview

Copy defines a source and destination of either a file or directory to be copied during a task.

Instance Attribute Summary collapse

Instance Attribute Details

#fromObject

from is the file or directory to copy from.

Required


287
288
289
# File 'lib/minke/config/config.rb', line 287

def from
  @from
end

#toObject

to is the file or directory to copy to.

Required


293
294
295
# File 'lib/minke/config/config.rb', line 293

def to
  @to
end