Method: Config#remove_section

Defined in:
lib/config.rb

#remove_section(key) ⇒ Object



127
128
129
130
# File 'lib/config.rb', line 127

def remove_section(key)
  key = Section.normalize(key)
  @lines.delete(key) ? true : false
end