class IniParse::Lines::Section

def has_option?(key)

Returns true if an option with the given +key+ exists in this section.
def has_option?(key)
  @lines.has_key?(key.to_s)
end