Class: Servactory::Info::Result
- Inherits:
-
Object
- Object
- Servactory::Info::Result
- Defined in:
- lib/servactory/info/result.rb
Instance Attribute Summary collapse
-
#inputs ⇒ Object
readonly
Returns the value of attribute inputs.
-
#internals ⇒ Object
readonly
Returns the value of attribute internals.
-
#outputs ⇒ Object
readonly
Returns the value of attribute outputs.
-
#stages ⇒ Object
readonly
Returns the value of attribute stages.
Instance Method Summary collapse
-
#initialize(builder) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(builder) ⇒ Result
Returns a new instance of Result.
11 12 13 14 15 16 |
# File 'lib/servactory/info/result.rb', line 11 def initialize(builder) @inputs = builder.inputs @internals = builder.internals @outputs = builder.outputs @stages = builder.stages end |
Instance Attribute Details
#inputs ⇒ Object (readonly)
Returns the value of attribute inputs.
6 7 8 |
# File 'lib/servactory/info/result.rb', line 6 def inputs @inputs end |
#internals ⇒ Object (readonly)
Returns the value of attribute internals.
6 7 8 |
# File 'lib/servactory/info/result.rb', line 6 def internals @internals end |
#outputs ⇒ Object (readonly)
Returns the value of attribute outputs.
6 7 8 |
# File 'lib/servactory/info/result.rb', line 6 def outputs @outputs end |
#stages ⇒ Object (readonly)
Returns the value of attribute stages.
6 7 8 |
# File 'lib/servactory/info/result.rb', line 6 def stages @stages end |