class Nocode::Step

Defines a running step. Steps should be sub-classes of this class as well as to implement perform.

Attributes

context[R]
name[R]
options[R]
type[R]

Public Class Methods

new( context: Context.new, name: '', options: {}, type: '' ) click to toggle source
# File lib/nocode/step.rb, line 21
def initialize(
  context: Context.new,
  name: '',
  options: {},
  type: ''
)
  @context = context
  @options = options
  @name    = name
  @type    = type
end