spreadsheet 0.8.7 → 0.8.8

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.
data/History.txt CHANGED
@@ -1,3 +1,11 @@
1
+ === 0.8.8 / 02.08.2013
2
+
3
+ Author: Nathan Colgate <nathancolgate@gmail.com>
4
+ Date: Thu Aug 1 15:01:57 2013 -0500
5
+
6
+ * Update excel/internals.rb to reference a valid Encoding type
7
+ * Encoding.find("MACINTOSH") was throwing an error. Encoding.find("MACROMAN") does not.
8
+
1
9
  === 0.8.7 / 24.07.2013
2
10
 
3
11
  Author: Yasuhiro Asaka <yasaka@ywesee.com>
data/lib/spreadsheet.rb CHANGED
@@ -43,7 +43,7 @@ module Spreadsheet
43
43
 
44
44
  ##
45
45
  # The version of Spreadsheet you are using.
46
- VERSION = '0.8.7'
46
+ VERSION = '0.8.8'
47
47
 
48
48
  ##
49
49
  # Default client Encoding. Change this value if your application uses a
@@ -49,8 +49,8 @@ module Internals
49
49
  1257 => "WINDOWS-1257", #(Baltic)
50
50
  1258 => "WINDOWS-1258", #(Vietnamese)
51
51
  1361 => "WINDOWS-1361", #(Korean (Johab))
52
- 10000 => "MACINTOSH",
53
- 32768 => "MACINTOSH",
52
+ 10000 => "MACROMAN",
53
+ 32768 => "MACROMAN",
54
54
  32769 => "WINDOWS-1252", #(Latin I) (BIFF2-BIFF3)
55
55
  }
56
56
  SEGAPEDOC = CODEPAGES.invert
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spreadsheet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.7
4
+ version: 0.8.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-07-24 00:00:00.000000000 Z
12
+ date: 2013-08-02 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: ruby-ole