Class: RunnerAction

Inherits:
Object
  • Object
show all
Defined in:
lib/tdl/runner/runner_action.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(short_name, name, client_action) ⇒ RunnerAction

Returns a new instance of RunnerAction.



8
9
10
11
12
# File 'lib/tdl/runner/runner_action.rb', line 8

def initialize(short_name, name, client_action)
  @short_name = short_name
  @name = name
  @client_action = client_action
end

Instance Attribute Details

#client_actionObject (readonly)

Returns the value of attribute client_action.



6
7
8
# File 'lib/tdl/runner/runner_action.rb', line 6

def client_action
  @client_action
end

#nameObject (readonly)

Returns the value of attribute name.



6
7
8
# File 'lib/tdl/runner/runner_action.rb', line 6

def name
  @name
end

#short_nameObject (readonly)

Returns the value of attribute short_name.



6
7
8
# File 'lib/tdl/runner/runner_action.rb', line 6

def short_name
  @short_name
end