Class: Synvert::Core::Configuration
- Inherits:
-
Object
- Object
- Synvert::Core::Configuration
- Defined in:
- lib/synvert/core/configuration.rb
Overview
Synvert global configuration.
Class Attribute Summary collapse
-
.only_paths ⇒ Array<String>
Get a list of only paths.
-
.root_path ⇒ String
Get the path.
-
.show_run_process ⇒ Boolean
Check if show run process.
-
.skip_paths ⇒ Array<String>
Get a list of skip paths.
Class Attribute Details
.only_paths ⇒ Array<String>
Get a list of only paths.
30 31 32 |
# File 'lib/synvert/core/configuration.rb', line 30 def only_paths @only_paths || [] end |
.root_path ⇒ String
Get the path.
16 17 18 |
# File 'lib/synvert/core/configuration.rb', line 16 def root_path @root_path || '.' end |
.show_run_process ⇒ Boolean
Check if show run process.
37 38 39 |
# File 'lib/synvert/core/configuration.rb', line 37 def show_run_process @show_run_process || false end |
.skip_paths ⇒ Array<String>
Get a list of skip paths.
23 24 25 |
# File 'lib/synvert/core/configuration.rb', line 23 def skip_paths @skip_paths || [] end |