Class: Circler::Step

Inherits:
Object
  • Object
show all
Defined in:
lib/circler/response/step.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#statusObject (readonly)

Returns the value of attribute status.



6
7
8
# File 'lib/circler/response/step.rb', line 6

def status
  @status
end

#typeObject (readonly)

Returns the value of attribute type.



5
6
7
# File 'lib/circler/response/step.rb', line 5

def type
  @type
end

Instance Method Details

#actionsObject



14
15
16
# File 'lib/circler/response/step.rb', line 14

def actions
  @hash['actions'].map { |a| Action.new(a) }
end