Represents a blank line. Used so that we can preserve blank lines when writing back to the file.
# File lib/iniparse/lines.rb, line 310 def blank? true end
# File lib/iniparse/lines.rb, line 314 def self.parse(line, opts) if line !~ /\S/ # blank if opts[:comment].nil? [:blank] else [:comment, opts[:comment], opts] end end end