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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f7a292fadcd84916c37aae55acb1b03f3b42a380
4
- data.tar.gz: 5336bed05e1a9c56659f079c427a718d3361471a
3
+ metadata.gz: 4298c03c72488e63b8b50878bd59340c92a6bfb2
4
+ data.tar.gz: 787718140dccee75ea9407a298b1700c147f08f4
5
5
  SHA512:
6
- metadata.gz: 6f21ee26da89ad559cc221f2ed9ff1cab7d82834aab4b28f3c52ea72d68689626fa6913791efb2eae1fb1fe9c2a30de80363e20e0e273e57ec9df7c7a858625b
7
- data.tar.gz: 961a57736598945e1e1f913a8fe5fed867eb0dad3d87acd00fc26e243b1aeafe996c0599afa2ab2165540f9662d25085ef7a0ac3e07b7095241ee458b0cdfab7
6
+ metadata.gz: 2ec69c70be8583640e6ff7bb04d5e84e3cd18bd93e0a456dbf99fb45f0ed4119cdd2653954df4d30f0d22ac6b949c8601fc225998d1caca387a578e353c84f31
7
+ data.tar.gz: 720b8a57e50de2ca682364f718309ed45f19d9fc2dc54e5ad4c534b4284b3bb6441bc5e79d5b8538c9b8c460b1e4ab43155f54042e0b77cb8a595b5fcc0fdf97
@@ -7,9 +7,10 @@ bundler_args: --binstubs
7
7
  script: "bundle exec ruby test/suite.rb"
8
8
  rvm:
9
9
  - ruby-head
10
+ - 2.3.3
11
+ - 2.2.6
12
+ - 2.1.10
10
13
  - 2.0.0
11
- - 2.2.3
12
- - 2.1.7
13
14
  - 1.9.3
14
15
  - 1.9.2
15
16
  - 1.8.7
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
 
@@ -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.4'
49
+ VERSION = '1.1.5'
49
50
 
50
51
  ##
51
52
  # Default client Encoding. Change this value if your application uses a
@@ -28,8 +28,7 @@ class Workbook < Spreadsheet::Workbook
28
28
  attr_accessor :bof, :ole
29
29
  attr_writer :date_base
30
30
  def Workbook.open io, opts = {}
31
- @reader = Reader.new opts
32
- @reader.read io
31
+ Reader.new(opts).read(io)
33
32
  end
34
33
  def initialize *args
35
34
  super
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
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: 2016-12-02 00:00:00.000000000 Z
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.5.1
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