[ol7_developer] rubygem-inifile-3.0.0-2.0.2.el7.noarch

Name:rubygem-inifile
Version:3.0.0
Release:2.0.2.el7
Architecture:noarch
Group:Development/Ruby
Size:63979
License:Distributable
RPM: rubygem-inifile-3.0.0-2.0.2.el7.noarch.rpm
Source RPM: rubygem-inifile-3.0.0-2.0.2.el7.src.rpm
Build Date:Wed Oct 21 2020
Build Host:jenkins-172-17-0-2-26ff7d03-ac18-4178-9dcc-7d3aff2bf709.appad3iad.osdevelopmeniad.oraclevcn.com
Vendor:Oracle America
URL:http://rubygems.org/gems/inifile
Summary:INI file reader and writer
Description:
Although made popular by Windows, INI files can be used on any system thanks
to their flexibility. They allow a program to store configuration data, which
can then be easily parsed and changed. Two notable systems that use the INI
format are Samba and Trac.
More information about INI files can be found on the [Wikipedia
Page](http://en.wikipedia.org/wiki/INI_file).

The basic element contained in an INI file is the property. Every property has
a name and a value, delimited by an equals sign *=*. The name appears to the
left of the equals sign and the value to the right.
name=value

Section declarations start with *[* and end with *]* as in `[section1]` and
`[section2]` shown in the example below. The section declaration marks the
beginning of a section. All properties after the section declaration will be
associated with that section.

All lines beginning with a semicolon *;* or a number sign *#* are considered
to be comments. Comment lines are ignored when parsing INI files.

A typical INI file might look like this:
[section1]
; some comment on section1
var1 = foo
var2 = doodle
var3 = multiline values \
are also possible
[section2]

var1 = baz
var2 = shoodle.

Filelist (Show Changelog) (Show related packages)