spreadsheet 1.2.4 → 1.2.9

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/.gitignore DELETED
@@ -1,3 +0,0 @@
1
- tags
2
- *.swp
3
- /Gemfile.lock
data/.travis.yml DELETED
@@ -1,45 +0,0 @@
1
- language: ruby
2
- sudo: false
3
- cache: bundler
4
- before_install:
5
- - "if $(ruby -e 'exit(RUBY_VERSION >= \"2.3.0\")'); then env -u RUBYOPT gem update --system; fi"
6
- - "if $(ruby -e 'exit(RUBY_VERSION >= \"2.3.0\")'); then env -u RUBYOPT gem install bundler --no-document; fi"
7
- - "if $(ruby -e 'exit(RUBY_VERSION < \"2.3.0\")'); then gem install bundler -v 1.17.3 --no-document; fi"
8
- bundler_args: --binstubs
9
- script: "bundle exec ruby test/suite.rb"
10
- rvm:
11
- - ruby-head
12
- - 2.6.1
13
- - 2.5.3
14
- - 2.4.5
15
- - 2.3.8
16
- - 2.2.6
17
- - 2.1.10
18
- - 2.0.0
19
- - 1.9.3
20
- - 1.9.2
21
- - 1.8.7
22
- - rbx-19mode
23
- - rbx-18mode
24
- - jruby-head
25
- - jruby-19mode
26
- - jruby-18mode
27
- - ree
28
- matrix:
29
- include:
30
- - rvm: 2.4.5
31
- env: RUBYOPT='--enable-frozen-string-literal --debug-frozen-string-literal' USE_LATEST_RUBY_OLE=yes
32
- - rvm: 2.5.3
33
- env: RUBYOPT='--enable-frozen-string-literal --debug-frozen-string-literal' USE_LATEST_RUBY_OLE=yes
34
- - rvm: 2.6.1
35
- env: RUBYOPT='--enable-frozen-string-literal --debug-frozen-string-literal' USE_LATEST_RUBY_OLE=yes
36
- allow_failures:
37
- - rvm: ruby-head
38
- - rvm: rbx-19mode
39
- - rvm: rbx-18mode
40
- - rvm: jruby-head
41
- - rvm: jruby-19mode
42
- - rvm: jruby-18mode
43
- - rvm: ree
44
- email:
45
- false
data/GUIDE.md DELETED
@@ -1,339 +0,0 @@
1
- # Getting Started with Spreadsheet
2
- This guide is meant to get you started using Spreadsheet. By the end of it,
3
- you should be able to read and write Spreadsheets.
4
-
5
- Before you can do anything, you first need to make sure all that code is
6
- loaded:
7
-
8
- ```ruby
9
- require 'spreadsheet'
10
- ```
11
-
12
- ## Reading is easy!
13
-
14
- Worksheets come in various encodings. You need to tell Spreadsheet which
15
- encoding you want to deal with. The default is UTF-8
16
-
17
- ```ruby
18
- Spreadsheet.client_encoding = 'UTF-8'
19
- ```
20
-
21
- Let's open a workbook:
22
-
23
- ```ruby
24
- book = Spreadsheet.open '/path/to/an/excel-file.xls'
25
- ```
26
-
27
- We can either access all the worksheets in a workbook...
28
-
29
- ```ruby
30
- book.worksheets
31
- ```
32
-
33
- ...or access them by index or name (encoded in your `client_encoding`).
34
-
35
- ```ruby
36
- sheet1 = book.worksheet 0
37
- sheet2 = book.worksheet 'Sheet1'
38
- ```
39
-
40
- Now you can either iterate over all rows that contain some data. A call to
41
- `Worksheet.each` without arguments will omit empty rows at the beginning of the
42
- worksheet:
43
-
44
- ```ruby
45
- sheet1.each do |row|
46
- # do something interesting with a row
47
- end
48
- ```
49
-
50
- Or you can tell a worksheet how many rows should be omitted at the beginning.
51
- The following starts at the 3rd row, regardless of whether or not it or the
52
- preceding rows contain any data:
53
-
54
- ```ruby
55
- sheet2.each 2 do |row|
56
- # do something interesting with a row
57
- end
58
- ```
59
-
60
- Or you can access rows directly, by their index (0-based):
61
-
62
- ```ruby
63
- row = sheet1.row(3)
64
- ```
65
-
66
- To access the values stored in a row, treat the row like an array.
67
-
68
- ```ruby
69
- row[0]
70
- ```
71
-
72
- This will return a `String`, a `Float`, an `Integer`, a `Formula`, a `Link` or a `Date`
73
- or `DateTime` object - or `nil` if the cell is empty.
74
-
75
- More information about the formatting of a cell can be found in the format
76
- with the equivalent index:
77
-
78
- ```ruby
79
- row.format 2
80
- ```
81
-
82
- ## Writing is easy
83
- As before, make sure you have Spreadsheet required and the client_encoding
84
- set. Then make a new Workbook:
85
-
86
- ```ruby
87
- book = Spreadsheet::Workbook.new
88
- ```
89
-
90
- Add a Worksheet and you're good to go:
91
-
92
- ```ruby
93
- sheet1 = book.create_worksheet
94
- ```
95
-
96
- This will create a Worksheet with the Name "Worksheet1". If you prefer another
97
- name, you may do either of the following:
98
-
99
- ```ruby
100
- sheet2 = book.create_worksheet :name => 'My Second Worksheet'
101
- sheet1.name = 'My First Worksheet'
102
- ```
103
-
104
- Now, add data to the Worksheet, using either Worksheet#[]=,
105
- Worksheet#update_row, or work directly on Row using any of the Array-Methods
106
- that modify an Array in place:
107
-
108
- ```ruby
109
- sheet1.row(0).concat %w{Name Country Acknowlegement}
110
- sheet1[1,0] = 'Japan'
111
- row = sheet1.row(1)
112
- row.push 'Creator of Ruby'
113
- row.unshift 'Yukihiro Matsumoto'
114
- sheet1.row(2).replace [ 'Daniel J. Berger', 'U.S.A.',
115
- 'Author of original code for Spreadsheet::Excel' ]
116
- sheet1.row(3).push 'Charles Lowe', 'Author of the ruby-ole Library'
117
- sheet1.row(3).insert 1, 'Unknown'
118
- sheet1.update_row 4, 'Hannes Wyss', 'Switzerland', 'Author'
119
- ```
120
-
121
- Add some Formatting for flavour:
122
-
123
- ```ruby
124
- sheet1.row(0).height = 18
125
-
126
- format = Spreadsheet::Format.new :color => :blue,
127
- :weight => :bold,
128
- :size => 18
129
- sheet1.row(0).default_format = format
130
-
131
- bold = Spreadsheet::Format.new :weight => :bold
132
- 4.times do |x| sheet1.row(x + 1).set_format(0, bold) end
133
- ```
134
-
135
- And finally, write the Excel File:
136
-
137
- ```ruby
138
- book.write '/path/to/output/excel-file.xls'
139
- ```
140
-
141
- ## Modifying an existing Document
142
-
143
- Spreadsheet has some limited support for modifying an existing Document. This
144
- is done by copying verbatim those parts of an Excel-document which Spreadsheet
145
- can't modify (yet), recalculating relevant offsets, and writing the data that
146
- can be changed.
147
- Here's what should work:
148
-
149
- * Adding, changing and deleting cells.
150
- * You should be able to fill in Data to be evaluated by predefined Formulas
151
-
152
- Limitations:
153
-
154
- * Spreadsheet can only write BIFF8 (Excel97 and higher). The results of
155
- modifying an earlier version of Excel are undefined.
156
- * Spreadsheet does not modify Formatting at present. That means in particular
157
- that if you set the Value of a Cell to a Date, it can only be read as a
158
- Date if its Format was set correctly prior to the change.
159
- * Although it is theoretically possible, it is not recommended to write the
160
- resulting Document back to the same File/IO that it was read from.
161
-
162
- And here's how it works:
163
-
164
- ```ruby
165
- book = Spreadsheet.open '/path/to/an/excel-file.xls'
166
- sheet = book.worksheet 0
167
- sheet.each do |row|
168
- row[0] *= 2
169
- end
170
- book.write '/path/to/output/excel-file.xls'
171
- ```
172
-
173
- Or you can directly access the cell that you want and add your text on it:
174
-
175
- ```ruby
176
- sheet.rows[2][1] = "X"
177
- ```
178
-
179
- ## Date and DateTime
180
- Excel does not know a separate Datatype for Dates. Instead it encodes Dates
181
- into standard floating-point numbers and recognizes a Date-Cell by its
182
- formatting-string:
183
-
184
- ```ruby
185
- row.format(3).number_format
186
- ```
187
-
188
- Whenever a Cell's Format describes a Date or Time, Spreadsheet will give you
189
- the decoded Date or DateTime value. Should you need to access the underlying
190
- Float, you may do the following:
191
-
192
- ```ruby
193
- row.at(3)
194
- ```
195
-
196
- If for some reason the Date-recognition fails, you may force Date-decoding:
197
-
198
- ```ruby
199
- row.date(3)
200
- row.datetime(3)
201
- ```
202
-
203
- When you set the value of a Cell to a Date, Time or DateTime, Spreadsheet will
204
- try to set the cell's number-format to a corresponding value (one of Excel's
205
- builtin formats). If you have already defined a Date- or DateTime-format,
206
- Spreadsheet will use that instead. If a format has already been applied to
207
- a particular Cell, Spreadsheet will leave it untouched:
208
-
209
- ```ruby
210
- row[4] = Date.new 1975, 8, 21
211
- # -> assigns the builtin Date-Format: 'M/D/YY'
212
- book.add_format Format.new(:number_format => 'DD.MM.YYYY hh:mm:ss')
213
- row[5] = DateTime.new 2008, 10, 12, 11, 59
214
- # -> assigns the added DateTime-Format: 'DD.MM.YYYY hh:mm:ss'
215
- row.set_format 6, Format.new(:number_format => 'D-MMM-YYYY')
216
- row[6] = Time.new 2008, 10, 12
217
- # -> the Format of cell 6 is left unchanged.
218
- ```
219
-
220
- ## Outline (Grouping) and Hiding
221
- Spreadsheet supports outline (grouping) and hiding functions from version
222
- 0.6.5. In order to hide rows or columns, you can use 'hidden' property.
223
- As for outline, 'outline_level' property is also available. You can use
224
- both 'hidden' and 'outline_level' at the same time.
225
-
226
- You can create a new file with outline and hiding rows and columns as
227
- follows:
228
-
229
- ```ruby
230
- require 'spreadsheet'
231
-
232
- # create a new book and sheet
233
- book = Spreadsheet::Workbook.new
234
- sheet = book.create_worksheet
235
- 5.times {|j| 5.times {|i| sheet[j,i] = (i+1)*10**j}}
236
-
237
- # column
238
- sheet.column(2).hidden = true
239
- sheet.column(3).hidden = true
240
- sheet.column(2).outline_level = 1
241
- sheet.column(3).outline_level = 1
242
-
243
- # row
244
- sheet.row(2).hidden = true
245
- sheet.row(3).hidden = true
246
- sheet.row(2).outline_level = 1
247
- sheet.row(3).outline_level = 1
248
-
249
- # save file
250
- book.write 'out.xls'
251
- ```
252
-
253
- Also you can read an existing file and change the hidden and outline
254
- properties. Here is the example below:
255
-
256
- ```ruby
257
- require 'spreadsheet'
258
-
259
- # read an existing file
260
- file = ARGV[0]
261
- book = Spreadsheet.open(file, 'rb')
262
- sheet= book.worksheet(0)
263
-
264
- # column
265
- sheet.column(2).hidden = true
266
- sheet.column(3).hidden = true
267
- sheet.column(2).outline_level = 1
268
- sheet.column(3).outline_level = 1
269
-
270
- # row
271
- sheet.row(2).hidden = true
272
- sheet.row(3).hidden = true
273
- sheet.row(2).outline_level = 1
274
- sheet.row(3).outline_level = 1
275
-
276
- # save file
277
- book.write "out.xls"
278
- ```
279
-
280
- Notes
281
- * The outline_level should be under 8, which is due to the Excel data format.
282
-
283
- ## Allow access to rendered output instead of just writing a file
284
-
285
- ```ruby
286
- file_contents = StringIO.new
287
- book.write file_contents # => Now file_contents contains the rendered file output
288
- ```
289
-
290
- Also see: https://github.com/zdavatz/spreadsheet/issues/125#issuecomment-75541041
291
-
292
- ## More about Encodings
293
- Spreadsheet assumes it's running on Ruby 1.8 with Iconv-support. It is your
294
- responsibility to handle Conversion Errors, or to prevent them e.g. by using
295
- the Iconv Transliteration and Ignore flags:
296
- Spreadsheet.client_encoding = 'LATIN1//TRANSLIT//IGNORE'
297
-
298
- ## Page setup (for printing)
299
-
300
- ```ruby
301
- sheet.pagesetup[:orientation] = :landscape # or :portrait (default)
302
- sheet.pagesetup[:adjust_to] = 85 # default 100
303
- ```
304
-
305
- ## Backward Compatibility
306
- Spreadsheet is designed to be a drop-in replacement for both ParseExcel and
307
- Spreadsheet::Excel. It provides a number of require-paths for backward
308
- compatibility with its predecessors. If you have been working with ParseExcel,
309
- you have probably used one or more of the following:
310
-
311
- ```ruby
312
- require 'parseexcel'
313
- require 'parseexcel/parseexcel'
314
- require 'parseexcel/parser'
315
- ```
316
-
317
- Either of the above will define the ParseExcel.parse method as a facade to
318
- Spreadsheet.open. Additionally, this will alter Spreadsheets behavior to define
319
- the ParseExcel::Worksheet::Cell class and fill each parsed Row with instances
320
- thereof, which in turn provide ParseExcel's Cell#to_s(encoding) and Cell#date
321
- methods.
322
- You will have to manually uninstall the parseexcel library.
323
-
324
- If you are upgrading from Spreadsheet::Excel, you were probably using
325
- Workbook#add_worksheet and Worksheet#write, write_row or write_column.
326
- Use the following to load the code which provides them:
327
-
328
- ```ruby
329
- require 'spreadsheet/excel'
330
- ```
331
-
332
- Again, you will have to manually uninstall the spreadsheet-excel library.
333
-
334
- If you perform fancy formatting, you may run into trouble as the
335
- Format implementation has changed considerably. If that is the case, please
336
- drop me a line at "zdavatz at ywesee dot com" and I will try to help you. Don't
337
- forget to include the offending code-snippet!
338
-
339
- All compatibility code is deprecated and will be removed in version 1.0.0
data/Gemfile DELETED
@@ -1,11 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gem 'ruby-ole', '>= 1.2.12.2'
4
-
5
- if RUBY_VERSION.to_f > 2.0
6
- gem 'test-unit'
7
- gem 'minitest'
8
- end
9
- group :development do
10
- gem 'hoe', '>= 3.4'
11
- end
data/History.md DELETED
@@ -1,837 +0,0 @@
1
- ### 1.2.4 24.05.2019
2
- Author: Cyril Champier <cyril.champier@doctolib.com>
3
- Date: Fri May 24 12:56:52 2019 +0200
4
-
5
- * correct ruby version check
6
- * can read frozen string io
7
-
8
- ### 1.2.3 12.03.2019
9
- Author: taichi <taichi730@gmail.com>
10
- Date: Tue Mar 12 22:29:12 2019 +0900
11
-
12
- * Remove workaround for ruby-ole gem
13
-
14
- ### 1.2.2 01.03.2019
15
- Author: taichi <taichi730@gmail.com>
16
- Date: Fri Mar 1 13:00:28 2019 +0900
17
-
18
- * fixed unit test errors caused by frozen-string-literal
19
- * removed ruby 2.3.8 with frozen-string-literal from CI regression
20
- (It seems that standard libraries for this version does not support the
21
- feature enough.)
22
- * enable '--enable-frozen-string-literal' option on CI test
23
-
24
- ### 1.2.1 28.02.2019
25
- Author: taichi <taichi730@gmail.com>
26
- Date: Thu Feb 28 10:30:46 2019 +0900
27
-
28
- * Merge pull request #231 from taichi-ishitani/separated_version_file
29
- * Merge pull request #230 from taichi-ishitani/frozen_string_literal_support
30
-
31
- ### 1.2.0 17.2.2019
32
- Author: James McLaren <jamesmclaren555@gmail.com>
33
- * spreadsheet-1.2.0.gem released
34
-
35
- ### 1.1.9 26.1.2019
36
- Author: Nick Weiland <nickweiland@gmail.com>
37
- * spreadsheet-1.1.9.gem released.
38
-
39
- ### 1.1.8 / 20.08.2018
40
- Author: VitaliyAdamkov <adamkov@tex.ua>
41
- Date: Mon Aug 20 09:48:31 2018 +0300
42
-
43
- * Cancel :lazy usage
44
- * Use lazy select to speed up a little
45
- * Omit rails :try usage
46
- * stub for :postread_worksheet method
47
- * sometimes it selects empty array..
48
-
49
- Author: 545ch4 <s@rprojekt.org>
50
- Date: Wed Mar 28 15:33:04 2018 +0200
51
-
52
- * [ruby-2.4] Fix weird first line of spreadsheet.gemspec
53
- * Doesn't seem to be a valid .gemspec command/field.
54
-
55
- ### 1.1.7 / 15.03.2018
56
-
57
- Author: Maarten Brouwers <github@murb.nl>
58
- Date: Thu Mar 15 15:10:23 2018 +0100
59
-
60
- * shadowing outer local variable - i
61
-
62
- * Running rake resulted in the following warning: `lib/spreadsheet/worksheet.rb:345: warning: shadowing outer local variable - i`; this patch fixes that.
63
-
64
- ### 1.1.6 / 12.03.2018
65
-
66
- Author: Todd Hambley <thambley@travelleaders.com>
67
- Date: Mon Mar 12 14:20:39 2018 -0400
68
-
69
- * fix reject for ruby 1.8.7
70
- * fix using invalid code pages when writing workbook
71
-
72
- ### 1.1.5 / 20.11.2017
73
-
74
- Author: Paco Guzmán <pacoguzman@users.noreply.github.com>
75
- Date: Sun Nov 19 18:10:57 2017 +0100
76
-
77
- * Avoid creating a class variable, that variable cannot be garbage collected and it retains a lot of memory
78
-
79
- ### 1.1.4 / 02.12.2016
80
-
81
- Author: Richard Lee <dlackty@gmail.com>
82
- Date: Mon Jan 16 03:52:42 2017 +0800
83
-
84
- * Update Travis CI rubies
85
-
86
- Author: Zeno R.R. Davatz <zdavatz@ywesee.com>
87
- Date: Fri Dec 2 10:36:20 2016 +0100
88
-
89
- * updated Gem to use the correct License on Rubygems to GPL-3.0 as stated in the LICENSE File.
90
-
91
- ### 1.1.3 / 06.08.2016
92
-
93
- Author: Alexandre Balon-Perin <abalonperin@gilt.jp>
94
- Date: Fri Aug 5 17:19:29 2016 +0900
95
-
96
- * Fix issue with iconv on Ubuntu 12.04
97
- * This fix is related to a bug in the iconv implementation packaged in libc6 on Ubuntu 12.04
98
- * For some reasons, the encoding options //TRANSLIT//IGNORE are improperly applied.
99
- * When //TRANSLIT is specified, instead of rescuing errors related to //TRANSLIT and checking if the //IGNORE is set, the code simply crashes.
100
-
101
- ### 1.1.2 / 29.03.2016
102
-
103
- Author: Aleksandr Boykov <aleksandr.boykov@parelio.com>
104
- Date: Mon Mar 28 14:07:35 2016 -0400
105
-
106
- fixes compact! method when the excel document has dates
107
-
108
- ### 1.1.1 / 03.01.2016
109
-
110
- Author: ChouAndy <chouandy@ecoworkinc.com>
111
- Date: Sun Jan 3 17:26:18 2016 +0800
112
-
113
- Fixed Unknown Codepage 0x5212
114
-
115
- ### 1.1.0 / 08.12.2015
116
-
117
- Author: Matthew Boeh <matt@crowdcompass.com>
118
- Date: Mon Dec 7 11:18:55 2015 -0800
119
-
120
- * Disregard locale indicators when determining whether a cell contains a date/time.
121
-
122
- ### 1.0.9 / 18.11.2015
123
-
124
- Author: 545ch4 <s@rprojekt.org>
125
- Date: Mon Nov 16 10:26:27 2015 +0100
126
-
127
- * Add smart method compact! to worksheet
128
- * Use compact! to reduce the number of rows and columns by striping empty one at both ends.
129
-
130
- ### 1.0.8 / 20.10.2015
131
-
132
- commit e9bd1dd34998803b63460f4951e9aa34e569bd8f
133
- Author: Pierre Laprée <pilap82@users.noreply.github.com>
134
- Date: Tue Oct 20 03:12:22 2015 +0200
135
-
136
- * Remove stray `puts`
137
- * A `puts` instruction pollutes the log and doesn't serve any purpose. As such, we propose its removal.
138
-
139
- ### 1.0.7 / 23.09.2015
140
-
141
- Author: Leopoldo Lee Agdeppa III <leopoldo.agdeppa@gmail.com>
142
- Date: Wed Sep 23 08:24:16 2015 +0800
143
-
144
- * Update worksheet.rb
145
- * Adding Test for Freeze panels
146
- * Update worksheet.rb
147
- * Added freeze (freeze panel) functionality
148
- * Update worksheet.rb
149
- * Freeze (freeze window) functionality added to worksheet
150
-
151
- ### 1.0.6 / 14.09.2015
152
-
153
- Author: Yann Plancqueel <yplancqueel@gmail.com>
154
- Date: Sat Sep 12 15:32:49 2015 +0200
155
-
156
- * bugfix opening a spreadsheet with missing format
157
-
158
- ### 1.0.5 / 01.09.2015
159
-
160
- Author: kunashir <kunashir@list.ru>
161
- Date: Tue Sep 1 13:12:49 2015 +0300
162
-
163
- * add format for nubmer with out #
164
-
165
- ### 1.0.4 / 18.07.2015
166
-
167
- Author: Edmund Mai <edmundm@crowdtap.com>
168
- Date: Fri Jul 17 15:32:47 2015 -0400
169
-
170
- * Fixes slow Spreadsheet.open response in console
171
-
172
- ### 1.0.3 / 10.03.2015
173
-
174
- Author: Robert Eshleman <c.robert.eshleman@gmail.com>
175
- Date: Mon Mar 9 09:47:59 2015 -0400
176
-
177
- * Update `ruby-ole` to `1.2.11.8`
178
- ** `ruby-ole` <= `1.2.11.7` throws a duplicated key warning in Ruby 2.2.
179
- ** This commit updates `ruby-ole` to `1.2.11.8`, which fixes this warning.
180
- ** Related discussion: [aquasync/ruby-ole#15] - [aquasync/ruby-ole#15]: https://github.com/aquasync/ruby-ole/issues/15
181
-
182
- ### 1.0.2 / 05.03.2015
183
-
184
- Author: cantin <cantin2010@gmail.com>
185
- Date: Thu Mar 5 16:13:59 2015 +0800
186
-
187
- * add Rational support
188
- * add rational requirement
189
- * use old rational syntax in test
190
-
191
- ### 1.0.1 / 22.01.2015
192
-
193
- Author: Sergey Konotopov <lalalalalala@gmail.com>
194
- Date: Wed Jan 21 13:19:56 2015 +0300
195
-
196
- * Fixing Excel::Worksheet#dimensions
197
-
198
- ### 1.0.0 / 29.08.2014
199
-
200
- * added spreadsheet/errors.rb to Manifest.txt
201
-
202
- ### 0.9.9 / 28.08.2014
203
-
204
- Author: PikachuEXE <pikachuexe@gmail.com>
205
- Date: Wed Aug 27 09:55:41 2014 +0800
206
-
207
- * Add custom error classes
208
- * Raise custom error for unknown code page or unsupported encoding
209
-
210
- ### 0.9.8 / 19.08.2014
211
-
212
- Author: PikachuEXE <pikachuexe@gmail.com>
213
- Date: Tue Aug 19 09:54:30 2014 +0800
214
-
215
- * Fix Encoding for MRI 2.1.0
216
-
217
- ### 0.9.7 / 04.02.2014
218
-
219
- * Avoid exception when reading text objects
220
- * Add test for drawings with text (currenty broken)
221
- * Restore xlsopcodes script which had been mangled in previous commits
222
- * Remove ruby 1.9 from roadmap, it's already working fine
223
- * Fix excel file format documentation which had been mangled in previous commits
224
-
225
- ### 0.9.6 / 02.12.2013
226
-
227
- Author: Malcolm Blyth <trashbat@co.ck>
228
- Date: Mon Dec 2 11:44:25 2013 +0000
229
-
230
- * Fixed issue whereby object author being null caused a gross failure.
231
- * Now returns object author as an empty string
232
-
233
- ### 0.9.5 / 20.11.2013
234
-
235
- Author: Malcolm Blyth <trashbat@co.ck>
236
- Date: Tue Nov 19 15:14:31 2013 +0000
237
-
238
- * Bumped revision
239
- * Fixed author stringname error (damn this 1 based counting)
240
- * Updating integration test to check for comments contained within the cells.
241
- * Checking also for multiple comments in a sheet
242
-
243
- ### 0.9.4 / 12.11.2013
244
-
245
- * Updated Manifest.txt
246
-
247
- ### 0.9.3 / 12.11.2013
248
-
249
- commit e15d8b45d7587f7ab78c7b7768de720de9961341 (refs/remotes/gguerrero/master)
250
- Author: Guillermo Guerrero <g.guerrero.bus@gmail.com>
251
- Date: Tue Nov 12 11:50:30 2013 +0100
252
-
253
- * Refactor update_format for cloning format objects
254
- * Added lib/spreadsheet/note.rb to Manifest.txt file
255
- * 'update_format' methods now receive a hash of key => values to update
256
-
257
- Author: Przemysław Ciąćka <przemyslaw.ciacka@gmail.com>
258
- Date: Tue Nov 12 00:07:57 2013 +0100
259
-
260
- * Added lib/spreadsheet/note.rb to Manifest.txt file
261
-
262
- ### 0.9.2 / 11.11.2013
263
-
264
- commit e70dc0dbbc966ce312b45b0d44d0c3b1dc10aad6
265
- Author: Malcolm Blyth <trashbat@co.ck>
266
- Date: Mon Nov 11 15:53:58 2013 +0000
267
-
268
- *Corrected compressed string formatting - *U (UTF-8) should have been *S (16-bit string)
269
- *Completed addition of notes hash to worksheet
270
- *Bumped revision
271
- *Updated reader and note
272
- Note class no longer extends string for simplicity and debug of class (pp now works a bit more easily)
273
- Reader has had loads of changes (still WIP) to allow objects of class
274
- Note and NoteObject to be created and combined in the postread_worksheet function
275
- *Adding noteObject to deal with the Object (and ultimately text comment field) created by excel's madness
276
-
277
- ### 0.9.1 / 24.10.2013
278
-
279
- * Author: Matti Lehtonen <matti.lehtonen@puujaa.com>
280
- Date: Thu Oct 24 09:41:50 2013 +0300
281
-
282
- * Add support for worksheet visibility
283
-
284
- ### 0.9.0 / 16.09.2013
285
-
286
- * Author: Pavel <pavel.evst@gmail.com>
287
- Date: Mon Sep 16 14:02:49 2013 +0700
288
-
289
- * Test cases for Worksheet#margins, Worksheet#pagesetup, Workbook#delete_worksheet. Fix bugs related to it.
290
- * Page margins reader/writter
291
- * Markdownify GUIDE
292
- * Add page setup options (landscape or portrait and adjust_to)
293
-
294
- ### 0.8.9 / 24.08.2013
295
-
296
- Author: Doug Renn <renn@nestegg.com>
297
- Date: Fri Aug 23 17:10:24 2013 -0600
298
-
299
- * Work around to handle number formats that are being mistaken time formats
300
-
301
- ### 0.8.8 / 02.08.2013
302
-
303
- Author: Nathan Colgate <nathancolgate@gmail.com>
304
- Date: Thu Aug 1 15:01:57 2013 -0500
305
-
306
- * Update excel/internals.rb to reference a valid Encoding type
307
- * Encoding.find("MACINTOSH") was throwing an error. Encoding.find("MACROMAN") does not.
308
-
309
- ### 0.8.7 / 24.07.2013
310
-
311
- Author: Yasuhiro Asaka <yasaka@ywesee.com>
312
- Date: Wed Jul 24 11:31:12 2013 +0900
313
-
314
- * Remove warnings for test suite
315
- * warning: mismatched indentations at 'end' with 'class' at xxx
316
- * warning: method redefined; discarding old xxx
317
- * warning: assigned but unused variable xxx
318
- * warning: previous definition of xxx was here
319
- * The source :rubygems is deprecated because HTTP
320
- * requests are insecure. (Gemfile)
321
-
322
- ### 0.8.6 / 11.07.2013
323
-
324
- Author: Arjun Anand and Robert Stern <dev+arjuna+rstern@reenhanced.com>
325
- Date: Wed Jul 10 13:45:30 2013 -0400
326
-
327
- * Allow editing of an existing worksheet.
328
-
329
- ### 0.8.5 / 24.04.2013
330
-
331
- * Applied Patch by Joao Almeida: When editing an existing sheet, cells merge was not working.
332
- * https://github.com/voraz/spreadsheet/pull/14.patch
333
-
334
- ### 0.8.4 / 20.04.2013
335
-
336
- * Applied Patch by boss@airbladesoftware.com
337
- * https://groups.google.com/d/msg/rubyspreadsheet/73IoEwSx69w/barE7uVnIzwJ
338
-
339
- ### 0.8.3 / 12.03.2013
340
-
341
- Author: Keith Walsh <keith.walsh@adtegrity.com>
342
- Date: Mon Mar 11 16:48:25 2013 -0400
343
-
344
- * Typo correction in guide example.
345
-
346
- ### 0.8.2 / 28.02.2013
347
-
348
- Author: Roque Pinel <roque.pinel@infotechfl.com>
349
- Date: Wed Feb 27 12:10:29 2013 -0500
350
-
351
- * Requiring BigDecimal for checking.
352
- * Made API friendly to BigDecimal precision.
353
- * Changes introduced by the user 'valeriusjames'.
354
-
355
- ### 0.8.1 / 18.02.2013
356
-
357
- * Updated Manifest.txt to include lib/spreadsheet/excel/rgb.rb
358
-
359
- ### 0.8.0 / 18.02.2013
360
-
361
- * Adding support for converting color palette values to RGB values (not vice-versa..yet)
362
- * by https://github.com/dancaugherty/spreadsheet/compare/master...rgb
363
-
364
- ### 0.7.9 / 06.02.2013
365
-
366
- Author: Eugeniy Belyaev (zhekanax)
367
-
368
- * You can merge if you are interested in perl-like Workbook.set_custom_color
369
- implementation. I know it is not really a proper way to deal with custom colors, but
370
- nevertheless it makes it possible.
371
- * https://github.com/zdavatz/spreadsheet/pull/27
372
-
373
- ### 0.7.8 / 06.02.2013
374
-
375
- Author: Kenichi Kamiya <kachick1@gmail.com>
376
- Date: Wed Feb 6 11:23:35 2013 +0900
377
-
378
- * Link to Travis CI on README
379
- * Remove warnings "assigned but unused variable" in test
380
- * Remove warnings "assigned but unused variable"
381
- * Enable $VERBOSE flag when running test
382
-
383
- ### 0.7.7 / 22.01.2013
384
-
385
- Author: DeTeam <timur.deteam@gmail.com>
386
- Date: Tue Jan 22 19:11:52 2013 +0400
387
-
388
- * Make tests pass
389
- * Readme updated
390
- * RuntimeError when file is empty
391
- * Hoe in dev deps
392
- * Finish with bundler
393
- * Add a Gemfile
394
-
395
- also see: https://github.com/zdavatz/spreadsheet/pull/24
396
-
397
- ### 0.7.6 / 15.01.2013
398
-
399
- Author: Kenichi Kamiya <kachick1@gmail.com>
400
- Date: Tue Jan 15 15:52:58 2013 +0900
401
-
402
- * Remove warnings "method redefined; discarding old default_format"
403
- * Remove warnings "`*' interpreted as argument prefix"
404
- * Remove warnings "instance variable @{ivar} not initialized"
405
- * Remove warnings "assigned but unused variable"
406
-
407
- also see: https://github.com/zdavatz/spreadsheet/pull/21
408
-
409
- ### 0.7.5 / 06.12.2012
410
-
411
- * Add error tolerant values for Iconv when writing spreadsheet
412
- * by andrea@spaghetticode.it
413
-
414
- ### 0.7.4 / 06.10.2012
415
-
416
- * Adds Spreadsheet::Excel::Row#to_a method to properly decode Date and DateTime data.
417
- * patches by https://github.com/mdgreenfield/spreadsheet
418
-
419
- ### 0.7.3 / 26.06.2012
420
-
421
- * Fix Format borders
422
- * see https://github.com/zdavatz/spreadsheet/pull/6 for full details.
423
- * patches by uraki66@gmail.com
424
-
425
- ### 0.7.2 / 14.06.2012
426
-
427
- * many changes by Mina Naguib <mina.git@naguib.ca>
428
- * see git log for full details
429
-
430
- ### 0.7.1 / 08.05.2012
431
-
432
- * Author: Artem Ignatiev <zazubrik@gmail.com>
433
- * remove require and rake altogether
434
- * gem build and rake gem both work fine without those requires,
435
- * and requiring 'rake' broke bundler
436
- * add rake as development dependency
437
- * Somehow it broken rake on my other project
438
-
439
- ### 0.7.0 / 07.05.2012
440
-
441
- * Author: Artem Ignatiev <zazubrik@gmail.com>
442
- * use both ruby 1.8 and 1.9 compatible way of getting character code when hashing
443
- * Fix syntax for ruby-1.9
444
- * return gemspec so that bundler can find it
445
- When bundler loads gemspec, it evaluates it, and if the return value is
446
- not a gem specification built, refuses to load the gem.
447
- * Testing worksheet protection
448
-
449
- ### 0.6.9 / 28.04.2012
450
-
451
- * Yield is more simple here too.
452
- * No need to capture the block in Spreadsheet.open
453
- * Rather than extending a core class, let's just use #rcompact from a helper module
454
-
455
- ### 0.6.8 / 20.01.2012
456
-
457
- * adds the fix to allow the writing of empty rows, by ClemensP.
458
- * Test also by ClemensP.
459
-
460
- ### 0.6.7 / 18.01.2012
461
-
462
- * http://dev.ywesee.com/wiki.php/Gem/Spreadsheet points point 2.
463
- * Tests by Michal
464
- * Patches by Timon
465
-
466
- ### 0.6.6 / 18.01.2012
467
-
468
- * http://dev.ywesee.com/wiki.php/Gem/Spreadsheet points 8 and 9.
469
- * Fixes byjsaak@napalm.hu
470
- * Patches by Vitaly Klimov
471
-
472
- ### 0.6.5.9 / 7.9.2011
473
-
474
- * Fixed a frozen string bug thanks to dblock (Daniel Doubrovkine),
475
- * dblock@dblock.org
476
-
477
- * https://github.com/dblock/spreadsheet/commit/164dcfbb24097728f1a7453702c270107e725b7c
478
-
479
- ### 0.6.5.8 / 30.8.2011
480
-
481
- * This patch is about adding a sheet_count method to workbook so that it returns
482
- * the total no of worksheets for easy access. Please check. By
483
- * tamizhgeek@gmail.com
484
-
485
- * https://gist.github.com/1180625
486
-
487
- ### 0.6.5.7 / 20.7.2011
488
-
489
- * Fixed the bug introduced by Roel van der Hoorn and updated the test cases.
490
-
491
- * https://github.com/vanderhoorn/spreadsheet/commit/c79ab14dcf40dee1d6d5ad2b174f3fe31414ca28
492
-
493
- ### 0.6.5.6 / 20.7.2011
494
-
495
- * Added a fix from Roel van der Hoorn to sanitize_worksheets if 'sheets' is empty.
496
-
497
- * https://github.com/vanderhoorn/spreadsheet/commit/c109f2ac5486f9a38a6d93267daf560ab4b9473e
498
-
499
- ### 0.6.5.5 / 24.6.2011
500
-
501
- * updated the color code for orange to 0x0034 => :orange, thanks to the hint of Jonty
502
-
503
- * https://gist.github.com/1044700
504
-
505
- ### 0.6.5.4 / 18.4.2011
506
-
507
- * Updated worksheet.rb according to the Patch of Björn Andersson.
508
-
509
- * https://gist.github.com/925007#file_test.patch
510
- * http://url.ba/09p9
511
-
512
- ### 0.6.5.3 / 23.3.2011
513
-
514
- * Updated Txt lib/spreadsheet/excel/writer/biff8.rb with a Patch from Alexandre Bini
515
-
516
- * See this for full detail: http://url.ba/6r1z
517
-
518
- ### 0.6.5.2 / 14.2.2011
519
-
520
- * Updated test/integration.rb to work with Ruby ruby 1.9.2p136 (2010-12-25 revision 30365) [i686-linux]
521
-
522
- * Thanks for the hint tomiacannondale@gmail.com
523
-
524
- ### 0.6.5.1 / 17.1.2011
525
-
526
- * One enhancement thanks to Qiong Peng, Moo Yu, and Thierry Thelliez
527
-
528
- * http://dev.ywesee.com/wiki.php/Gem/Spreadsheet
529
-
530
- ### 0.6.5 / 07.12.2010
531
-
532
- * 2 Enhancements courtesy to ISS AG.
533
-
534
- * Outlining (Grouping) of lines and columns is now possible. The outlining
535
- maximum is 8. This means you can do 8 subgroups in a group.
536
-
537
- * Hiding and Unhiding of lines and columns is now possible.
538
-
539
- * Both of above two points is now possible by creating a new Excel File from
540
- scratch or editing an existing XLS and adding groups or hiding lines to it.
541
-
542
- ### 0.6.4.1 / 2009-09-17
543
-
544
- * 3 Bugfixes
545
-
546
- * Fixes the issue reported by Thomas Preymesser and tracked down most of the
547
- way by Hugh McGowan in
548
- http://rubyforge.org/tracker/index.php?func=detail&aid=26647&group_id=678&atid=2677
549
- where reading the value of the first occurrence of a shared formula
550
- failed.
551
-
552
- * Fixes the issue reported by Anonymous in
553
- http://rubyforge.org/tracker/index.php?func=detail&aid=26546&group_id=678&atid=2677
554
- where InvalidDate was raised for some Dates.
555
-
556
- * Fixes the issue reported by John Lee in
557
- http://rubyforge.org/tracker/index.php?func=detail&aid=27110&group_id=678&atid=2677
558
- which is probably a duplicate of the Bug previously reported by Kadvin XJ in
559
- http://rubyforge.org/tracker/index.php?func=detail&aid=26182&group_id=678&atid=2677
560
- where unchanged rows were marked as changed in the Excel-Writer while the
561
- File was being written, triggering an Error.
562
-
563
- * 1 minor enhancement
564
-
565
- * Detect row offsets from Cell data if Row-Ops are missing
566
- This fixes a bug reported by Alexander Logvinov in
567
- http://rubyforge.org/tracker/index.php?func=detail&aid=26513&group_id=678&atid=2677
568
-
569
-
570
- ### 0.6.4 / 2009-07-03
571
-
572
- * 5 Bugfixes
573
-
574
- * Fixes the issue reported by Harley Mackenzie in
575
- http://rubyforge.org/tracker/index.php?func=detail&aid=24119&group_id=678&atid=2677
576
- where in some edge-cases numbers were stored incorrectly
577
-
578
- * Fixes the issue reported and fixed by someone23 in
579
- http://rubyforge.org/tracker/index.php?func=detail&aid=25732&group_id=678&atid=2677
580
- where using Row-updater methods with blocks caused LocalJumpErrors
581
-
582
- * Fixes the issue reported and fixed by Corey Burrows in
583
- http://rubyforge.org/tracker/index.php?func=detail&aid=25784&group_id=678&atid=2677
584
- where "Setting the height of a row, either in Excel directly, or via the
585
- Spreadsheet::Row#height= method results in a row that Excel displays with
586
- the maximum row height (409)."
587
-
588
- * Fixes the issue reported by Don Park in
589
- http://rubyforge.org/tracker/index.php?func=detail&aid=25968&group_id=678&atid=2677
590
- where some Workbooks could not be parsed due to the OLE-entry being all
591
- uppercase
592
-
593
- * Fixes the issue reported by Iwan Buetti in
594
- http://rubyforge.org/tracker/index.php?func=detail&aid=24414&group_id=678&atid=2677
595
- where parsing some Workbooks failed with an Invalid date error.
596
-
597
-
598
- * 1 major enhancement
599
-
600
- * Spreadsheet now runs on Ruby 1.9
601
-
602
- ### 0.6.3.1 / 2009-02-13
603
-
604
- * 3 Bugfixes
605
-
606
- * Only selects the First Worksheet by default
607
- This deals with an issue reported by Biörn Andersson in
608
- http://rubyforge.org/tracker/?func=detail&atid=2677&aid=23736&group_id=678
609
- where data-edits in OpenOffice were propagated through all selected
610
- sheets.
611
-
612
- * Honors Row, Column, Worksheet and Workbook-formats
613
- and thus fixes a Bug introduced in
614
- http://scm.ywesee.com/?p=spreadsheet;a=commit;h=52755ad76fdda151564b689107ca2fbb80af3b78
615
- and reported in
616
- http://rubyforge.org/tracker/index.php?func=detail&aid=23875&group_id=678&atid=2678
617
- and by Joachim Schneider in
618
- http://rubyforge.org/forum/forum.php?thread_id=31056&forum_id=2920
619
-
620
- * Fixes a bug reported by Alexander Skwar in
621
- http://rubyforge.org/forum/forum.php?thread_id=31403&forum_id=2920
622
- where the user-defined formatting of Dates and Times was overwritten with
623
- a default format, and other issues connected with writing Dates and Times
624
- into Spreadsheets.
625
-
626
- * 1 minor enhancements
627
-
628
- * Spreadsheet shold now be completely warning-free,
629
- as requested by Eric Peterson in
630
- http://rubyforge.org/forum/forum.php?thread_id=31346&forum_id=2920
631
-
632
- ### 0.6.3 / 2009-01-14
633
-
634
- * 1 Bugfix
635
-
636
- * Fixes the issue reported by Corey Martella in
637
- http://rubyforge.org/forum/message.php?msg_id=63651
638
- as well as other issues engendered by the decision to always shorten
639
- Rows to the last non-nil value.
640
-
641
- * 2 minor enhancements
642
-
643
- * Added bin/xlsopcodes, a tool for examining Excel files
644
-
645
- * Documents created by Spreadsheet can now be Printed in Excel and
646
- Excel-Viewer.
647
- This issue was reported by Spencer Turner in
648
- http://rubyforge.org/tracker/index.php?func=detail&aid=23287&group_id=678&atid=2677
649
-
650
- ### 0.6.2.1 / 2008-12-18
651
-
652
- * 1 Bugfix
653
-
654
- * Using Spreadsheet together with 'jcode' could lead to broken Excel-Files
655
- Thanks to Eugene Mikhailov for tracking this one down in:
656
- http://rubyforge.org/tracker/index.php?func=detail&aid=23085&group_id=678&atid=2677
657
-
658
- ### 0.6.2 / 2008-12-11
659
-
660
- * 14 Bugfixes
661
-
662
- * Fixed a bug where #<boolean>! methods did not trigger a call to
663
- #row_updated
664
-
665
- * Corrected the Row-Format in both Reader and Writer (was Biff5 for some
666
- reason)
667
-
668
- * Populates Row-instances with @default_format, @height, @outline_level
669
- and @hidden attributes
670
-
671
- * Fixed a Bug where Workbooks deriving from a Template-Workbook without
672
- SST could not be saved
673
- Reported in
674
- http://rubyforge.org/tracker/index.php?func=detail&aid=22863&group_id=678&atid=2678
675
-
676
- * Improved handling of Numeric Values (writes a RK-Entry for a Float
677
- only if it can be encoded with 4 leading zeroes, and a Number-Entry for an
678
- Integer only if it cannot be encoded as an RK)
679
-
680
- * Fixes a bug where changes to a Row were ignored if they were
681
- outside of an existing Row-Block.
682
-
683
- * Fixes a bug where MULRK-Entries sometimes only contained a single RK
684
-
685
- * Fixes a bug where formatting was ignored if it was applied to empty Rows
686
- Reported by Zomba Lumix in
687
- http://rubyforge.org/forum/message.php?msg_id=61985
688
-
689
- * Fixes a bug where modifying a Row in a loaded Workbook could lead to Rows
690
- with smaller indices being set to nil.
691
- Reported by Ivan Samsonov in
692
- http://rubyforge.org/forum/message.php?msg_id=62816
693
-
694
- * Deals with rounding-problems when calculating Time
695
- Reported by Bughunter extraordinaire Bjørn Hjelle
696
-
697
- * Correct splitting of wide characters in SST
698
- Reported by Michel Ziegler and by Eugene Mikhailov in
699
- http://rubyforge.org/tracker/index.php?func=detail&aid=23085&group_id=678&atid=2677
700
-
701
- * Fix an off-by-one error in write_mulrk that caused Excel to complain that
702
- 'Data may be lost', reported by Emma in
703
- http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/321979
704
- and by Chris Lowis in
705
- http://rubyforge.org/tracker/index.php?func=detail&aid=22892&group_id=678&atid=2677
706
-
707
-
708
- * Read formats correctly in read_mulrk
709
- Reported by Ivan Samsonov
710
- Fixes that part of http://rubyforge.org/forum/message.php?msg_id=62821
711
- which is a bug. Does nothing for the disappearance of Rich-Text
712
- formatting, which will not be addressed until 0.7.0
713
-
714
- * Fixes a (benign?) bug, where adding text to a template-file resulted in
715
- a duplicate extsst-record.
716
-
717
- * 2 minor enhancements
718
-
719
- * Improved recognition of Time-Formats
720
-
721
- * Improvement to Robustness: allow Spreadsheet::Workbook.new
722
- Takes care of http://rubyforge.org/forum/message.php?msg_id=62941
723
- Reported by David Chamberlain
724
-
725
- ### 0.6.1.9 / 2008-11-07
726
-
727
- * 1 Bugfix
728
-
729
- * Fixes a precision-issue in Excel::Row#datetime: Excel records Time-Values
730
- with more significant bits (but not necessarily more precise) than
731
- DateTime can handle.
732
- (Thanks to Bjørn Hjelle for the Bugreport)
733
-
734
- * 1 minor enhancement
735
-
736
- * Added support for appending Worksheets to a Workbook
737
- (Thanks to Mohammed Rabbani for the report)
738
-
739
- ### 0.6.1.8 / 2008-10-31
740
-
741
- * 1 Bugfix
742
-
743
- * Fixes a bug where out-of-sequence reading of multiple Worksheets could
744
- lead to data from the wrong Sheet being returned.
745
- (Thanks to Bugreporter extraordinaire Bjørn Hjelle)
746
-
747
- ### 0.6.1.7 / 2008-10-30
748
-
749
- * 1 Bugfix
750
-
751
- * Fixes a bug where all Formulas were ignored.
752
- (Thanks to Bjørn Hjelle for the report)
753
-
754
- * 1 minor enhancement
755
-
756
- * Allow the substitution of an IO object with a StringIO.
757
- (Thanks to luxor for the report)
758
-
759
- ### 0.6.1.6 / 2008-10-28
760
-
761
- * 2 Bugfixes
762
-
763
- * Fixed encoding and decoding of BigNums, negative and other large Numbers
764
- http://rubyforge.org/tracker/index.php?func=detail&aid=22581&group_id=678&atid=2677
765
- * Fix a bug where modifications to default columns weren't stored
766
- http://rubyforge.org/forum/message.php?msg_id=61567
767
-
768
- * 1 minor enhancement
769
-
770
- * Row#enriched_data won't return a Bogus-Date if the data isn't a Numeric
771
- value
772
- (Thanks to Bjørn Hjelle for the report)
773
-
774
- ### 0.6.1.5 / 2008-10-24
775
-
776
- * 2 Bugfixes
777
-
778
- * Removed obsolete code which triggered Iconv::InvalidEncoding
779
- on Systems with non-gnu Iconv:
780
- http://rubyforge.org/tracker/index.php?func=detail&aid=22541&group_id=678&atid=2677
781
- * Handle empty Worksheets
782
- (Thanks to Charles Lowe for the Patches)
783
-
784
- ### 0.6.1.4 / 2008-10-23
785
-
786
- * 1 Bugfix
787
-
788
- * Biff8#wide now works properly even if $KCODE=='UTF-8'
789
- (Thanks to Bjørn Hjelle for the Bugreport)
790
-
791
- * 1 minor enhancement
792
-
793
- * Read/Write functionality for Links (only URLs can be written as of now)
794
-
795
- ### 0.6.1.3 / 2008-10-21
796
-
797
- * 2 Bugfixes
798
-
799
- * Renamed UTF8 to UTF-8 to support freebsd
800
- (Thanks to Jacob Atzen for the Patch)
801
- * Fixes a Bug where only the first Rowblock was read correctly if there were
802
- no DBCELL records terminating the Rowblocks.
803
- (Thanks to Bjørn Hjelle for the Bugreport)
804
-
805
- ### 0.6.1.2 / 2008-10-20
806
-
807
- * 2 Bugfixes
808
-
809
- * Corrected the Font-Encoding values in Excel::Internals
810
- (Thanks to Bjørn Hjelle for the Bugreport)
811
- * Spreadsheet now skips Richtext-Formatting runs and Asian Phonetic
812
- Settings when reading the SST, fixing a problem where the presence of
813
- Richtext could lead to an incomplete SST.
814
-
815
- ### 0.6.1.1 / 2008-10-20
816
-
817
- * 1 Bugfix
818
-
819
- * Corrected the Manifest - included column.rb
820
-
821
- ### 0.6.1 / 2008-10-17
822
-
823
- * 3 minor enhancements
824
-
825
- * Adds Column formatting and Worksheet#format_column
826
- * Reads and writes correct Fonts (Font-indices > 3 appear to be 1-based)
827
- * Reads xf data
828
-
829
- ### 0.6.0 / 2008-10-13
830
-
831
- * 1 major enhancement
832
-
833
- * Initial upload of the shiny new Spreadsheet Gem after three weeks of
834
- grueling labor in the dark binary mines of Little-Endian Biff and long
835
- hours spent polishing the surfaces of documentation.
836
-
837
-