inih 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/lib/inih.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ddb0233107d7ad4ce1121c75fd29a94de7d5dc42
4
- data.tar.gz: 42fc11b4b2f16e971e61c189b45ecf652ae71ffb
3
+ metadata.gz: 912071a5bb89a738e1d01fe3ad8b626caeb7e859
4
+ data.tar.gz: fbe8ca6b946fe7265832d6ac4d05f7e702d93e56
5
5
  SHA512:
6
- metadata.gz: 4727253857a6bdc0472b47792631ded48e2a125bfc0acfeb649b19f7869d92e4f02dded4f215e32d9dd8a307ecd29bd5c83c211ec6c404cc902f59afb7c00824
7
- data.tar.gz: fcd4cd91b83fb9316a0366818c653e5f3c867f144ebb6c34761a7b904751c32f85251861c4f9f5e280affcdc523e76a6f06aebc053c15e9c4f9cde59ec906dfb
6
+ metadata.gz: 1019f0411c9ec0aa39cacd7960155812cde0d67dd7104c12c54601045ae8ac24d1bf85131b943c9c36ac1cdebbe981f2eade5431b17c1bc4d0a874c52b91ac0c
7
+ data.tar.gz: 77b67817d9c335365fd2a914d3c5e736780e575527f9484466a43c5ef3322eb9cfb8bad2daf3ed19d8c43aa971383500a22021ec8a0d60d3de065ff43a4f8367
data/README.md CHANGED
@@ -1,6 +1,8 @@
1
1
  ruby-inih
2
2
  =========
3
3
 
4
+ [![Gem Version](https://badge.fury.io/rb/inih.svg)](https://badge.fury.io/rb/inih)
5
+
4
6
  A Ruby wrapper for [inih](https://github.com/benhoyt/inih), a simple INI parser.
5
7
 
6
8
  ### Installation
data/lib/inih.rb CHANGED
@@ -5,7 +5,7 @@ require_relative "../ext/inih/inih"
5
5
  # The primary namespace for {INIH}.
6
6
  module INIH
7
7
  # The current version of ruby-inih.
8
- VERSION = "0.0.1"
8
+ VERSION = "0.0.2"
9
9
 
10
10
  # Normalize a parsed INI file's values.
11
11
  # @api private
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inih
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - William Woodruff