Class: Rake::Funnel::Tasks::Copy
- Inherits:
-
TaskLib
- Object
- TaskLib
- Rake::Funnel::Tasks::Copy
- Includes:
- Support
- Defined in:
- lib/rake/funnel/tasks/copy.rb
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#source ⇒ Object
Returns the value of attribute source.
-
#target ⇒ Object
Returns the value of attribute target.
Instance Method Summary collapse
-
#initialize(*args, &task_block) ⇒ Copy
constructor
A new instance of Copy.
Constructor Details
#initialize(*args, &task_block) ⇒ Copy
Returns a new instance of Copy.
11 12 13 14 15 |
# File 'lib/rake/funnel/tasks/copy.rb', line 11 def initialize(*args, &task_block) setup_ivars(args) define(args, &task_block) end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
9 10 11 |
# File 'lib/rake/funnel/tasks/copy.rb', line 9 def name @name end |
#source ⇒ Object
Returns the value of attribute source.
9 10 11 |
# File 'lib/rake/funnel/tasks/copy.rb', line 9 def source @source end |
#target ⇒ Object
Returns the value of attribute target.
9 10 11 |
# File 'lib/rake/funnel/tasks/copy.rb', line 9 def target @target end |