iniparse 1.1.2 → 1.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/History +8 -0
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/iniparse.rb +1 -1
- metadata +5 -3
data/History
ADDED
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.3
|
data/lib/iniparse.rb
CHANGED
@@ -7,7 +7,7 @@ require File.join(dir, 'lines')
|
|
7
7
|
require File.join(dir, 'parser')
|
8
8
|
|
9
9
|
module IniParse
|
10
|
-
VERSION = File.read('VERSION').strip
|
10
|
+
VERSION = File.read(File.expand_path('../../VERSION', __FILE__)).strip
|
11
11
|
|
12
12
|
# A base class for IniParse errors.
|
13
13
|
class IniParseError < StandardError; end
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 1
|
8
|
-
-
|
9
|
-
version: 1.1.
|
8
|
+
- 3
|
9
|
+
version: 1.1.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Anthony Williams
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-
|
17
|
+
date: 2010-03-04 00:00:00 +00:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -38,6 +38,7 @@ executables: []
|
|
38
38
|
extensions: []
|
39
39
|
|
40
40
|
extra_rdoc_files:
|
41
|
+
- History
|
41
42
|
- LICENSE
|
42
43
|
- README.rdoc
|
43
44
|
- VERSION
|
@@ -68,6 +69,7 @@ files:
|
|
68
69
|
- spec/spec_fixtures.rb
|
69
70
|
- spec/spec_helper.rb
|
70
71
|
- spec/spec_helper_spec.rb
|
72
|
+
- History
|
71
73
|
has_rdoc: true
|
72
74
|
homepage: http://github.com/antw/iniparse
|
73
75
|
licenses: []
|