Module: Morion::Config

Defined in:
lib/morion/config.rb

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.blacklistObject

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

.whitelistObject

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_valuesObject



10
11
12
13
# File 'lib/morion/config.rb', line 10

def set_default_values
  @blacklist = []
  @whitelist = []
end