Class: Dry::CLI::Parser::Result Private
- Inherits:
-
Object
- Object
- Dry::CLI::Parser::Result
- Defined in:
- lib/dry/cli/parser.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #arguments ⇒ Object readonly private
- #error ⇒ Object readonly private
Class Method Summary collapse
- .failure(error = "Error: Invalid param provided") ⇒ Object private
- .help ⇒ Object private
- .success(arguments = {}) ⇒ Object private
Instance Method Summary collapse
- #error? ⇒ Boolean private
- #help? ⇒ Boolean private
-
#initialize(arguments: {}, error: nil, help: false) ⇒ Result
constructor
private
A new instance of Result.
Constructor Details
#initialize(arguments: {}, error: nil, help: false) ⇒ Result
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Result.
125 126 127 128 129 |
# File 'lib/dry/cli/parser.rb', line 125 def initialize(arguments: {}, error: nil, help: false) @arguments = arguments @error = error @help = help end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
117 118 119 |
# File 'lib/dry/cli/parser.rb', line 117 def arguments @arguments end |
#error ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
121 122 123 |
# File 'lib/dry/cli/parser.rb', line 121 def error @error end |
Class Method Details
.failure(error = "Error: Invalid param provided") ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
111 112 113 |
# File 'lib/dry/cli/parser.rb', line 111 def self.failure(error = "Error: Invalid param provided") new(error: error) end |
.help ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
99 100 101 |
# File 'lib/dry/cli/parser.rb', line 99 def self.help new(help: true) end |
.success(arguments = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
105 106 107 |
# File 'lib/dry/cli/parser.rb', line 105 def self.success(arguments = {}) new(arguments: arguments) end |
Instance Method Details
#error? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
133 134 135 |
# File 'lib/dry/cli/parser.rb', line 133 def error? !error.nil? end |
#help? ⇒ Boolean
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
139 140 141 |
# File 'lib/dry/cli/parser.rb', line 139 def help? @help end |