Module Core::Config::ParserInterface
In: core/config.rb

The ParserInterface should be implemented by all the different configuration parsers (xml, yaml, etc.). Dradis and it‘s modules will only access methods defined in this interface

Methods

Public Instance methods

Given an option name (as a symbol) this function retrieves the value stored in the configuration file for it.

[Source]

    # File core/config.rb, line 39
39:       def get_option(key)  
40:         raise 'unimplemented!'
41:       end

[Validate]