Sha256: 986f889bb63bbcdc354e78c39628e71903289d502b400608f4ab77c4578b45f4
Contents?: true
Size: 1.55 KB
Versions: 1
Compression:
Stored size: 1.55 KB
Contents
dir = File.expand_path('iniparse', File.dirname(__FILE__)) require File.join(dir, 'document') require File.join(dir, 'generator') require File.join(dir, 'line_collection') require File.join(dir, 'lines') require File.join(dir, 'parser') module IniParse VERSION = '1.5.0'.freeze # A base class for IniParse errors. class IniParseError < StandardError; end # Raised if an error occurs parsing an INI document. class ParseError < IniParseError; end # Raised when an option line is found during parsing before the first # section. class NoSectionError < ParseError; end # Raised when a line is added to a collection which isn't allowed (e.g. # adding a Section line into an OptionCollection). class LineNotAllowed < IniParseError; end module_function # Parse given given INI document source +source+. # # See IniParse::Parser.parse # # ==== Parameters # source<String>:: The source from the INI document. # # ==== Returns # IniParse::Document # def parse(source) IniParse::Parser.new(source.gsub(/(?<!\\)\\\n/, '')).parse end # Opens the file at +path+, reads and parses it's contents. # # ==== Parameters # path<String>:: The path to the INI document. # # ==== Returns # IniParse::Document # def open(path) document = parse(File.read(path)) document.path = path document end # Creates a new IniParse::Document using the specification you provide. # # See IniParse::Generator. # # ==== Returns # IniParse::Document # def gen(&blk) IniParse::Generator.new.gen(&blk) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
iniparse-1.5.0 | lib/iniparse.rb |