# -*- encoding: utf-8 -*- # stub: inifile 2.0.2 ruby lib Gem::Specification.new do |s| s.name = "inifile".freeze s.version = "2.0.2".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze] s.authors = ["Tim Pease".freeze] s.date = "2012-09-15" s.description = "Although made popular by Windows, INI files can be used on any system thanks\nto their flexibility. They allow a program to store configuration data, which\ncan then be easily parsed and changed. Two notable systems that use the INI\nformat are Samba and Trac.\n\nMore information about INI files can be found on the [Wikipedia Page](http://en.wikipedia.org/wiki/INI_file).\n\n### Properties\n\nThe basic element contained in an INI file is the property. Every property has\na name and a value, delimited by an equals sign *=*. The name appears to the\nleft of the equals sign and the value to the right.\n\n name=value\n\n### Sections\n\nSection declarations start with *[* and end with *]* as in `[section1]` and\n`[section2]` shown in the example below. The section declaration marks the\nbeginning of a section. All properties after the section declaration will be\nassociated with that section.\n\n### Comments\n\nAll lines beginning with a semicolon *;* or a number sign *#* are considered\nto be comments. Comment lines are ignored when parsing INI files.\n\n### Example File Format\n\nA typical INI file might look like this:\n\n [section1]\n ; some comment on section1\n var1 = foo\n var2 = doodle\n var3 = multiline values \\\n are also possible\n\n [section2]\n # another comment\n var1 = baz\n var2 = shoodle".freeze s.email = "tim.pease@gmail.com".freeze s.extra_rdoc_files = ["History.txt".freeze] s.files = [".gitignore".freeze, ".travis.yml".freeze, "History.txt".freeze, "README.md".freeze, "Rakefile".freeze, "lib/inifile.rb".freeze, "test/data/bad_1.ini".freeze, "test/data/browscap.ini".freeze, "test/data/comment.ini".freeze, "test/data/escape.ini".freeze, "test/data/global.ini".freeze, "test/data/good.ini".freeze, "test/data/merge.ini".freeze, "test/data/mixed_comment.ini".freeze, "test/data/multiline.ini".freeze, "test/data/param.ini".freeze, "test/test_inifile.rb".freeze] s.homepage = "http://rubygems.org/gems/inifile".freeze s.rdoc_options = ["--main".freeze, "README.md".freeze] s.rubygems_version = "3.5.10".freeze s.summary = "INI file reader and writer".freeze s.test_files = ["test/test_inifile.rb".freeze] s.specification_version = 3 s.add_development_dependency(%q.freeze, [">= 0".freeze]) s.add_development_dependency(%q.freeze, [">= 3.8.0".freeze]) end