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) ⇒ RunnerAction

Returns a new instance of RunnerAction.



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

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

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



2
3
4
# File 'lib/tdl/runner/runner_action.rb', line 2

def name
  @name
end

#short_nameObject (readonly)

Returns the value of attribute short_name.



2
3
4
# File 'lib/tdl/runner/runner_action.rb', line 2

def short_name
  @short_name
end