Class: Minke::Config::Copy

Inherits:
Object
  • Object
show all
Defined in:
lib/minke/config/copy.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


10
11
12
# File 'lib/minke/config/copy.rb', line 10

def from
  @from
end

#toObject

to is the file or directory to copy to.

Required


16
17
18
# File 'lib/minke/config/copy.rb', line 16

def to
  @to
end