Class: Roast::TaskContext::PathElement
- Inherits:
-
Object
- Object
- Roast::TaskContext::PathElement
- Defined in:
- lib/roast/task_context.rb
Instance Attribute Summary collapse
-
#cog ⇒ Object
readonly
: Cog?.
-
#execution_manager ⇒ Object
readonly
: ExecutionManager?.
Instance Method Summary collapse
-
#initialize(cog: nil, execution_manager: nil) ⇒ PathElement
constructor
: (?cog: Cog?, ?execution_manager: ExecutionManager?) -> void.
Constructor Details
#initialize(cog: nil, execution_manager: nil) ⇒ PathElement
: (?cog: Cog?, ?execution_manager: ExecutionManager?) -> void
16 17 18 19 |
# File 'lib/roast/task_context.rb', line 16 def initialize(cog: nil, execution_manager: nil) @cog = cog @execution_manager = execution_manager end |
Instance Attribute Details
#cog ⇒ Object (readonly)
: Cog?
10 11 12 |
# File 'lib/roast/task_context.rb', line 10 def cog @cog end |
#execution_manager ⇒ Object (readonly)
: ExecutionManager?
13 14 15 |
# File 'lib/roast/task_context.rb', line 13 def execution_manager @execution_manager end |