writeexcel 0.3.4 → 0.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +7 -0
- data/VERSION +1 -1
- data/examples/formula_result.rb +29 -0
- data/examples/{hidden.rb → hide_sheet.rb} +0 -0
- data/examples/indent.rb +30 -0
- data/examples/merge6.rb +66 -0
- data/examples/outline.rb +254 -0
- data/examples/outline_collapsed.rb +208 -0
- data/examples/panes.rb +112 -0
- data/examples/right_to_left.rb +26 -0
- data/examples/row_wrap.rb +52 -0
- data/lib/writeexcel/formula.rb +14 -14
- data/lib/writeexcel/worksheet.rb +8 -7
- data/test/perl_output/formula_result.xls +0 -0
- data/test/perl_output/indent.xls +0 -0
- data/test/perl_output/merge6.xls +0 -0
- data/test/perl_output/outline.xls +0 -0
- data/test/perl_output/outline_collapsed.xls +0 -0
- data/test/perl_output/panes.xls +0 -0
- data/test/perl_output/right_to_left.xls +0 -0
- data/test/test_example_match.rb +598 -0
- data/writeexcel.gemspec +26 -3
- metadata +27 -4
data/writeexcel.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{writeexcel}
|
8
|
-
s.version = "0.3.
|
8
|
+
s.version = "0.3.5"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Hideo NAKAMURA"]
|
@@ -53,21 +53,29 @@ Gem::Specification.new do |s|
|
|
53
53
|
"examples/demo.rb",
|
54
54
|
"examples/diag_border.rb",
|
55
55
|
"examples/formats.rb",
|
56
|
+
"examples/formula_result.rb",
|
56
57
|
"examples/header.rb",
|
57
|
-
"examples/
|
58
|
+
"examples/hide_sheet.rb",
|
58
59
|
"examples/hyperlink.rb",
|
59
60
|
"examples/images.rb",
|
61
|
+
"examples/indent.rb",
|
60
62
|
"examples/merge1.rb",
|
61
63
|
"examples/merge2.rb",
|
62
64
|
"examples/merge3.rb",
|
63
65
|
"examples/merge4.rb",
|
64
66
|
"examples/merge5.rb",
|
67
|
+
"examples/merge6.rb",
|
68
|
+
"examples/outline.rb",
|
69
|
+
"examples/outline_collapsed.rb",
|
70
|
+
"examples/panes.rb",
|
65
71
|
"examples/properties.rb",
|
66
72
|
"examples/properties_jp.rb",
|
67
73
|
"examples/protection.rb",
|
68
74
|
"examples/regions.rb",
|
69
75
|
"examples/repeat.rb",
|
70
76
|
"examples/republic.png",
|
77
|
+
"examples/right_to_left.rb",
|
78
|
+
"examples/row_wrap.rb",
|
71
79
|
"examples/stats.rb",
|
72
80
|
"examples/stocks.rb",
|
73
81
|
"examples/tab_colors.rb",
|
@@ -131,18 +139,25 @@ Gem::Specification.new do |s|
|
|
131
139
|
"test/perl_output/file_font_biff",
|
132
140
|
"test/perl_output/file_font_key",
|
133
141
|
"test/perl_output/file_xf_biff",
|
142
|
+
"test/perl_output/formula_result.xls",
|
134
143
|
"test/perl_output/headers.xls",
|
135
144
|
"test/perl_output/hidden.xls",
|
136
145
|
"test/perl_output/hyperlink.xls",
|
137
146
|
"test/perl_output/images.xls",
|
147
|
+
"test/perl_output/indent.xls",
|
138
148
|
"test/perl_output/merge1.xls",
|
139
149
|
"test/perl_output/merge2.xls",
|
140
150
|
"test/perl_output/merge3.xls",
|
141
151
|
"test/perl_output/merge4.xls",
|
142
152
|
"test/perl_output/merge5.xls",
|
153
|
+
"test/perl_output/merge6.xls",
|
143
154
|
"test/perl_output/ole_write_header",
|
155
|
+
"test/perl_output/outline.xls",
|
156
|
+
"test/perl_output/outline_collapsed.xls",
|
157
|
+
"test/perl_output/panes.xls",
|
144
158
|
"test/perl_output/protection.xls",
|
145
159
|
"test/perl_output/regions.xls",
|
160
|
+
"test/perl_output/right_to_left.xls",
|
146
161
|
"test/perl_output/stats.xls",
|
147
162
|
"test/perl_output/stocks.xls",
|
148
163
|
"test/perl_output/tab_colors.xls",
|
@@ -269,20 +284,28 @@ Gem::Specification.new do |s|
|
|
269
284
|
"examples/demo.rb",
|
270
285
|
"examples/diag_border.rb",
|
271
286
|
"examples/formats.rb",
|
287
|
+
"examples/formula_result.rb",
|
272
288
|
"examples/header.rb",
|
273
|
-
"examples/
|
289
|
+
"examples/hide_sheet.rb",
|
274
290
|
"examples/hyperlink.rb",
|
275
291
|
"examples/images.rb",
|
292
|
+
"examples/indent.rb",
|
276
293
|
"examples/merge1.rb",
|
277
294
|
"examples/merge2.rb",
|
278
295
|
"examples/merge3.rb",
|
279
296
|
"examples/merge4.rb",
|
280
297
|
"examples/merge5.rb",
|
298
|
+
"examples/merge6.rb",
|
299
|
+
"examples/outline.rb",
|
300
|
+
"examples/outline_collapsed.rb",
|
301
|
+
"examples/panes.rb",
|
281
302
|
"examples/properties.rb",
|
282
303
|
"examples/properties_jp.rb",
|
283
304
|
"examples/protection.rb",
|
284
305
|
"examples/regions.rb",
|
285
306
|
"examples/repeat.rb",
|
307
|
+
"examples/right_to_left.rb",
|
308
|
+
"examples/row_wrap.rb",
|
286
309
|
"examples/stats.rb",
|
287
310
|
"examples/stocks.rb",
|
288
311
|
"examples/tab_colors.rb",
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 3
|
8
|
-
-
|
9
|
-
version: 0.3.
|
8
|
+
- 5
|
9
|
+
version: 0.3.5
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Hideo NAKAMURA
|
@@ -64,21 +64,29 @@ files:
|
|
64
64
|
- examples/demo.rb
|
65
65
|
- examples/diag_border.rb
|
66
66
|
- examples/formats.rb
|
67
|
+
- examples/formula_result.rb
|
67
68
|
- examples/header.rb
|
68
|
-
- examples/
|
69
|
+
- examples/hide_sheet.rb
|
69
70
|
- examples/hyperlink.rb
|
70
71
|
- examples/images.rb
|
72
|
+
- examples/indent.rb
|
71
73
|
- examples/merge1.rb
|
72
74
|
- examples/merge2.rb
|
73
75
|
- examples/merge3.rb
|
74
76
|
- examples/merge4.rb
|
75
77
|
- examples/merge5.rb
|
78
|
+
- examples/merge6.rb
|
79
|
+
- examples/outline.rb
|
80
|
+
- examples/outline_collapsed.rb
|
81
|
+
- examples/panes.rb
|
76
82
|
- examples/properties.rb
|
77
83
|
- examples/properties_jp.rb
|
78
84
|
- examples/protection.rb
|
79
85
|
- examples/regions.rb
|
80
86
|
- examples/repeat.rb
|
81
87
|
- examples/republic.png
|
88
|
+
- examples/right_to_left.rb
|
89
|
+
- examples/row_wrap.rb
|
82
90
|
- examples/stats.rb
|
83
91
|
- examples/stocks.rb
|
84
92
|
- examples/tab_colors.rb
|
@@ -142,18 +150,25 @@ files:
|
|
142
150
|
- test/perl_output/file_font_biff
|
143
151
|
- test/perl_output/file_font_key
|
144
152
|
- test/perl_output/file_xf_biff
|
153
|
+
- test/perl_output/formula_result.xls
|
145
154
|
- test/perl_output/headers.xls
|
146
155
|
- test/perl_output/hidden.xls
|
147
156
|
- test/perl_output/hyperlink.xls
|
148
157
|
- test/perl_output/images.xls
|
158
|
+
- test/perl_output/indent.xls
|
149
159
|
- test/perl_output/merge1.xls
|
150
160
|
- test/perl_output/merge2.xls
|
151
161
|
- test/perl_output/merge3.xls
|
152
162
|
- test/perl_output/merge4.xls
|
153
163
|
- test/perl_output/merge5.xls
|
164
|
+
- test/perl_output/merge6.xls
|
154
165
|
- test/perl_output/ole_write_header
|
166
|
+
- test/perl_output/outline.xls
|
167
|
+
- test/perl_output/outline_collapsed.xls
|
168
|
+
- test/perl_output/panes.xls
|
155
169
|
- test/perl_output/protection.xls
|
156
170
|
- test/perl_output/regions.xls
|
171
|
+
- test/perl_output/right_to_left.xls
|
157
172
|
- test/perl_output/stats.xls
|
158
173
|
- test/perl_output/stocks.xls
|
159
174
|
- test/perl_output/tab_colors.xls
|
@@ -304,20 +319,28 @@ test_files:
|
|
304
319
|
- examples/demo.rb
|
305
320
|
- examples/diag_border.rb
|
306
321
|
- examples/formats.rb
|
322
|
+
- examples/formula_result.rb
|
307
323
|
- examples/header.rb
|
308
|
-
- examples/
|
324
|
+
- examples/hide_sheet.rb
|
309
325
|
- examples/hyperlink.rb
|
310
326
|
- examples/images.rb
|
327
|
+
- examples/indent.rb
|
311
328
|
- examples/merge1.rb
|
312
329
|
- examples/merge2.rb
|
313
330
|
- examples/merge3.rb
|
314
331
|
- examples/merge4.rb
|
315
332
|
- examples/merge5.rb
|
333
|
+
- examples/merge6.rb
|
334
|
+
- examples/outline.rb
|
335
|
+
- examples/outline_collapsed.rb
|
336
|
+
- examples/panes.rb
|
316
337
|
- examples/properties.rb
|
317
338
|
- examples/properties_jp.rb
|
318
339
|
- examples/protection.rb
|
319
340
|
- examples/regions.rb
|
320
341
|
- examples/repeat.rb
|
342
|
+
- examples/right_to_left.rb
|
343
|
+
- examples/row_wrap.rb
|
321
344
|
- examples/stats.rb
|
322
345
|
- examples/stocks.rb
|
323
346
|
- examples/tab_colors.rb
|