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
Given an option name (as a symbol) this function retrieves the value stored in the configuration file for it.
# File core/config.rb, line 36 def get_option(key) raise 'unimplemented!' end