Module: Morion::Config
- Defined in:
- lib/morion/config.rb
Class Attribute Summary collapse
-
.blacklist ⇒ Object
Configuration option to specify a blacklist of folders you want to Morion don’t work with.
-
.whitelist ⇒ Object
Configuration option to specify a whitelist of folders you want to Morion to work with.
Class Method Summary collapse
Class Attribute Details
.blacklist ⇒ Object
Configuration option to specify a blacklist of folders you want to Morion don’t work with.
5 6 7 |
# File 'lib/morion/config.rb', line 5 def blacklist @blacklist end |
.whitelist ⇒ Object
Configuration option to specify a whitelist of folders you want to Morion to work with.
8 9 10 |
# File 'lib/morion/config.rb', line 8 def whitelist @whitelist end |
Class Method Details
.set_default_values ⇒ Object
10 11 12 13 |
# File 'lib/morion/config.rb', line 10 def set_default_values @blacklist = [] @whitelist = [] end |