Class: RunnerAction
- Inherits:
-
Object
- Object
- RunnerAction
- Defined in:
- lib/tdl/runner/runner_action.rb
Instance Attribute Summary collapse
-
#client_action ⇒ Object
readonly
Returns the value of attribute client_action.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#short_name ⇒ Object
readonly
Returns the value of attribute short_name.
Instance Method Summary collapse
-
#initialize(short_name, name, client_action) ⇒ RunnerAction
constructor
A new instance of RunnerAction.
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_action ⇒ Object (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 |
#name ⇒ Object (readonly)
Returns the value of attribute name.
6 7 8 |
# File 'lib/tdl/runner/runner_action.rb', line 6 def name @name end |
#short_name ⇒ Object (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 |