Class: Fastlane::ActionCommandReturn
- Inherits:
-
Object
- Object
- Fastlane::ActionCommandReturn
- Defined in:
- fastlane/lib/fastlane/server/action_command_return.rb
Overview
Encapsulates the result and description of a return object returned by an executed fastlane action
Instance Attribute Summary collapse
-
#closure_argument_value ⇒ Object
readonly
Returns the value of attribute closure_argument_value.
-
#return_value ⇒ Object
readonly
Returns the value of attribute return_value.
-
#return_value_type ⇒ Object
readonly
Returns the value of attribute return_value_type.
Instance Method Summary collapse
-
#initialize(return_value: nil, return_value_type: nil, closure_argument_value: nil) ⇒ ActionCommandReturn
constructor
A new instance of ActionCommandReturn.
Constructor Details
#initialize(return_value: nil, return_value_type: nil, closure_argument_value: nil) ⇒ ActionCommandReturn
Returns a new instance of ActionCommandReturn.
8 9 10 11 12 |
# File 'fastlane/lib/fastlane/server/action_command_return.rb', line 8 def initialize(return_value: nil, return_value_type: nil, closure_argument_value: nil) @return_value = return_value @closure_argument_value = closure_argument_value @return_value_type = return_value_type end |
Instance Attribute Details
#closure_argument_value ⇒ Object (readonly)
Returns the value of attribute closure_argument_value.
6 7 8 |
# File 'fastlane/lib/fastlane/server/action_command_return.rb', line 6 def closure_argument_value @closure_argument_value end |
#return_value ⇒ Object (readonly)
Returns the value of attribute return_value.
4 5 6 |
# File 'fastlane/lib/fastlane/server/action_command_return.rb', line 4 def return_value @return_value end |
#return_value_type ⇒ Object (readonly)
Returns the value of attribute return_value_type.
5 6 7 |
# File 'fastlane/lib/fastlane/server/action_command_return.rb', line 5 def return_value_type @return_value_type end |