Class: Ibex::CLI::Invocation
- Inherits:
-
Object
- Object
- Ibex::CLI::Invocation
- Defined in:
- lib/ibex/cli.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
: Array.
-
#stdout ⇒ Object
readonly
: _CLIOutput.
Instance Method Summary collapse
-
#initialize(arguments:, stdout:) ⇒ Invocation
constructor
A new instance of Invocation.
Constructor Details
#initialize(arguments:, stdout:) ⇒ Invocation
Returns a new instance of Invocation.
212 213 214 215 216 |
# File 'lib/ibex/cli.rb', line 212 def initialize(arguments:, stdout:) @arguments = arguments.freeze @stdout = stdout freeze end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
: Array
208 209 210 |
# File 'lib/ibex/cli.rb', line 208 def arguments @arguments end |
#stdout ⇒ Object (readonly)
: _CLIOutput
209 210 211 |
# File 'lib/ibex/cli.rb', line 209 def stdout @stdout end |