class IniParse::Lines::Option

def initialize(key, value, opts = {})


opts:: Extra options for the line.
value:: The value for this option.
key:: The option key.
==== Parameters
def initialize(key, value, opts = {})
  super(opts)
  @key, @value = key.to_s, value
end