spreadsheet 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -2
- data/History.md +20 -0
- data/lib/spreadsheet.rb +2 -1
- data/lib/spreadsheet/excel/workbook.rb +1 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4298c03c72488e63b8b50878bd59340c92a6bfb2
|
4
|
+
data.tar.gz: 787718140dccee75ea9407a298b1700c147f08f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ec69c70be8583640e6ff7bb04d5e84e3cd18bd93e0a456dbf99fb45f0ed4119cdd2653954df4d30f0d22ac6b949c8601fc225998d1caca387a578e353c84f31
|
7
|
+
data.tar.gz: 720b8a57e50de2ca682364f718309ed45f19d9fc2dc54e5ad4c534b4284b3bb6441bc5e79d5b8538c9b8c460b1e4ab43155f54042e0b77cb8a595b5fcc0fdf97
|
data/.travis.yml
CHANGED
data/History.md
CHANGED
@@ -1,3 +1,22 @@
|
|
1
|
+
### 1.1.5 / 20.11.2017
|
2
|
+
|
3
|
+
Author: Paco Guzmán <pacoguzman@users.noreply.github.com>
|
4
|
+
Date: Sun Nov 19 18:10:57 2017 +0100
|
5
|
+
|
6
|
+
* Avoid creating a class variable, that variable cannot be garbage collected and it retains a lot of memory
|
7
|
+
|
8
|
+
### 1.1.4 / 02.12.2016
|
9
|
+
|
10
|
+
Author: Richard Lee <dlackty@gmail.com>
|
11
|
+
Date: Mon Jan 16 03:52:42 2017 +0800
|
12
|
+
|
13
|
+
* Update Travis CI rubies
|
14
|
+
|
15
|
+
Author: Zeno R.R. Davatz <zdavatz@ywesee.com>
|
16
|
+
Date: Fri Dec 2 10:36:20 2016 +0100
|
17
|
+
|
18
|
+
* updated Gem to use the correct License on Rubygems to GPL-3.0 as stated in the LICENSE File.
|
19
|
+
|
1
20
|
### 1.1.3 / 06.08.2016
|
2
21
|
|
3
22
|
Author: Alexandre Balon-Perin <abalonperin@gilt.jp>
|
@@ -9,6 +28,7 @@ Date: Fri Aug 5 17:19:29 2016 +0900
|
|
9
28
|
* When //TRANSLIT is specified, instead of rescuing errors related to //TRANSLIT and checking if the //IGNORE is set, the code simply crashes.
|
10
29
|
|
11
30
|
### 1.1.2 / 29.03.2016
|
31
|
+
|
12
32
|
Author: Aleksandr Boykov <aleksandr.boykov@parelio.com>
|
13
33
|
Date: Mon Mar 28 14:07:35 2016 -0400
|
14
34
|
|
data/lib/spreadsheet.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
|
1
2
|
### Spreadsheet - A Library for reading and writing Spreadsheet Documents.
|
2
3
|
#
|
3
4
|
# Copyright (C) 2008-2010 ywesee GmbH
|
@@ -45,7 +46,7 @@ module Spreadsheet
|
|
45
46
|
|
46
47
|
##
|
47
48
|
# The version of Spreadsheet you are using.
|
48
|
-
VERSION = '1.1.
|
49
|
+
VERSION = '1.1.5'
|
49
50
|
|
50
51
|
##
|
51
52
|
# Default client Encoding. Change this value if your application uses a
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spreadsheet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masaomi Hatakeyama, Zeno R.R. Davatz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ruby-ole
|
@@ -178,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
178
178
|
version: '0'
|
179
179
|
requirements: []
|
180
180
|
rubyforge_project:
|
181
|
-
rubygems_version: 2.
|
181
|
+
rubygems_version: 2.6.8
|
182
182
|
signing_key:
|
183
183
|
specification_version: 4
|
184
184
|
summary: The Spreadsheet Library is designed to read and write Spreadsheet Documents
|