spreadsheet 1.2.3 → 1.2.8

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