class IniParse::Document

def section(key)


If there is no Section with the given key it will be created.

Returns the section identified by +key+.
def section(key)
  @lines[key.to_s] ||= Lines::Section.new(key.to_s)
end