Method: CM::Plugin::Configuration#parse

Defined in:
lib/core/plugin/configuration.rb

#parse(wipe = true) ⇒ Object




49
50
51
52
53
54
55
# File 'lib/core/plugin/configuration.rb', line 49

def parse(wipe = true)
  if initialized?
    clear if wipe
    yield if block_given?
  end
  export
end