Class: Allure::Config
- Inherits:
-
Object
- Object
- Allure::Config
- Defined in:
- lib/allure_ruby_commons/config.rb
Overview
Allure configuration class
Constant Summary collapse
- DEFAULT_RESULTS_DIRECTORY =
Returns default allure results directory.
"reports/allure-results"- DEFAULT_LOGGING_LEVEL =
Returns default loggin level.
Logger::INFO
Class Attribute Summary collapse
-
.clean_results_directory ⇒ Object
Returns the value of attribute clean_results_directory.
-
.link_issue_pattern ⇒ Object
Returns the value of attribute link_issue_pattern.
-
.link_tms_pattern ⇒ Object
Returns the value of attribute link_tms_pattern.
- .logging_level ⇒ Object
- .results_directory ⇒ Object
Class Attribute Details
.clean_results_directory ⇒ Object
Returns the value of attribute clean_results_directory.
14 15 16 |
# File 'lib/allure_ruby_commons/config.rb', line 14 def clean_results_directory @clean_results_directory end |
.link_issue_pattern ⇒ Object
Returns the value of attribute link_issue_pattern.
14 15 16 |
# File 'lib/allure_ruby_commons/config.rb', line 14 def link_issue_pattern @link_issue_pattern end |
.link_tms_pattern ⇒ Object
Returns the value of attribute link_tms_pattern.
14 15 16 |
# File 'lib/allure_ruby_commons/config.rb', line 14 def link_tms_pattern @link_tms_pattern end |
.logging_level ⇒ Object
21 22 23 |
# File 'lib/allure_ruby_commons/config.rb', line 21 def logging_level @logging_level || DEFAULT_LOGGING_LEVEL end |
.results_directory ⇒ Object
17 18 19 |
# File 'lib/allure_ruby_commons/config.rb', line 17 def results_directory @results_directory || DEFAULT_RESULTS_DIRECTORY end |