Skip to content

module INI

Class methods

.build(ini, space : Bool = false) : String

Generates an INI-style configuration from a given hash.

require "ini"

INI.build({"foo" => {"a" => "1"}}, true) # => "[foo]\na = 1\n\n"
View source

.build(io : IO, ini, space : Bool = false) : Nil

Appends INI data to the given IO.

View source

.parse(string_or_io : String | IO) : Hash(String, Hash(String, String))

Parses INI-style configuration from the given string. Raises a ParseException on any errors.

require "ini"

INI.parse("[foo]\na = 1") # => {"foo" => {"a" => "1"}}
View source