Class: JunitModel::CLI::Options
- Inherits:
-
Object
- Object
- JunitModel::CLI::Options
- Defined in:
- lib/junit_model/cli/cli_parser.rb
Overview
The options to be used throughout the CLI Module
Instance Attribute Summary collapse
-
#files ⇒ Object
Returns the value of attribute files.
-
#output_path ⇒ Object
Returns the value of attribute output_path.
Instance Method Summary collapse
-
#initialize ⇒ Options
constructor
A new instance of Options.
Constructor Details
#initialize ⇒ Options
Returns a new instance of Options.
8 9 10 11 |
# File 'lib/junit_model/cli/cli_parser.rb', line 8 def initialize self.files = [] self.output_path = './merged_tests.xml' end |
Instance Attribute Details
#files ⇒ Object
Returns the value of attribute files.
7 8 9 |
# File 'lib/junit_model/cli/cli_parser.rb', line 7 def files @files end |
#output_path ⇒ Object
Returns the value of attribute output_path.
7 8 9 |
# File 'lib/junit_model/cli/cli_parser.rb', line 7 def output_path @output_path end |