Method: Sfn::MonkeyPatch::Stack#performing

Defined in:
lib/sfn/monkey_patch/stack.rb

#performingString

Returns action currently being performed.

Returns:

  • (String)

    action currently being performed



89
90
91
92
93
# File 'lib/sfn/monkey_patch/stack.rb', line 89

def performing
  if(in_progress?)
    status.to_s.downcase.split('_').first.to_sym
  end
end