Class: Circler::Step
- Inherits:
-
Object
- Object
- Circler::Step
- Defined in:
- lib/circler/response/step.rb
Instance Attribute Summary collapse
-
#status ⇒ Object
readonly
Returns the value of attribute status.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
- #actions ⇒ Object
-
#initialize(type, hash) ⇒ Step
constructor
A new instance of Step.
Constructor Details
#initialize(type, hash) ⇒ Step
Returns a new instance of Step.
8 9 10 11 12 |
# File 'lib/circler/response/step.rb', line 8 def initialize(type, hash) @type = type @status = hash['status'] @hash = hash end |
Instance Attribute Details
#status ⇒ Object (readonly)
Returns the value of attribute status.
6 7 8 |
# File 'lib/circler/response/step.rb', line 6 def status @status end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
5 6 7 |
# File 'lib/circler/response/step.rb', line 5 def type @type end |