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
-
.path ⇒ String
Get the path.
-
.show_run_process ⇒ Boolean
Check if show run process.
-
.skip_files ⇒ Array<String>
Get a list of skip files.
Class Attribute Details
.path ⇒ String
Get the path.
15 16 17 |
# File 'lib/synvert/core/configuration.rb', line 15 def path @path || '.' end |
.show_run_process ⇒ Boolean
Check if show run process.
29 30 31 |
# File 'lib/synvert/core/configuration.rb', line 29 def show_run_process @show_run_process || false end |
.skip_files ⇒ Array<String>
Get a list of skip files.
22 23 24 |
# File 'lib/synvert/core/configuration.rb', line 22 def skip_files @skip_files || [] end |