Method: ConfigParser#options

Defined in:
lib/config_parser.rb

#optionsObject

Returns an array of the options registered with self.



192
193
194
195
196
# File 'lib/config_parser.rb', line 192

def options
  @options.select do |opt|
    opt.kind_of?(Option)
  end
end