iniparse 1.1.2 → 1.1.3

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 (5) hide show
  1. data/History +8 -0
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. data/lib/iniparse.rb +1 -1
  5. metadata +5 -3
data/History ADDED
@@ -0,0 +1,8 @@
1
+ == 1.1.3 (4th March 2010)
2
+
3
+ * Fix so that VERSION is correctly read on Windows.
4
+
5
+ == 1.1.0, 1.1.1, 1.1.2 (23rd February 2010)
6
+
7
+ * Removed extlib dependency
8
+ * Added this file. :)
data/Rakefile CHANGED
@@ -25,7 +25,7 @@ begin
25
25
 
26
26
  # rdoc
27
27
  gem.has_rdoc = true
28
- gem.extra_rdoc_files = %w(README.rdoc LICENSE VERSION)
28
+ gem.extra_rdoc_files = %w(README.rdoc History LICENSE VERSION)
29
29
 
30
30
  # Dependencies
31
31
  gem.add_development_dependency 'rspec', '>= 1.2.0'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.2
1
+ 1.1.3
@@ -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
- - 2
9
- version: 1.1.2
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-02-23 00:00:00 +00:00
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: []