writeexcel 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/.document +5 -0
  2. data/.gitignore +21 -0
  3. data/{README → README.rdoc} +14 -3
  4. data/Rakefile +52 -0
  5. data/VERSION +1 -0
  6. data/charts/chartex.rb +315 -0
  7. data/charts/demo1.rb +45 -0
  8. data/charts/demo101.bin +0 -0
  9. data/charts/demo2.rb +64 -0
  10. data/charts/demo201.bin +0 -0
  11. data/charts/demo3.rb +116 -0
  12. data/charts/demo301.bin +0 -0
  13. data/charts/demo4.rb +118 -0
  14. data/charts/demo401.bin +0 -0
  15. data/charts/demo5.rb +47 -0
  16. data/charts/demo501.bin +0 -0
  17. data/examples/demo.rb +4 -1
  18. data/examples/images.rb +14 -4
  19. data/examples/stats.rb +0 -2
  20. data/lib/writeexcel.rb +0 -1
  21. data/lib/writeexcel/excelformula.y +139 -0
  22. data/lib/writeexcel/formula.rb +3 -1
  23. data/lib/writeexcel/workbook.rb +9 -9
  24. data/test/helper.rb +9 -0
  25. data/test/perl_output/defined_name.xls +0 -0
  26. data/test/test_00_IEEE_double.rb +1 -3
  27. data/test/test_01_add_worksheet.rb +1 -4
  28. data/test/test_02_merge_formats.rb +1 -4
  29. data/test/test_04_dimensions.rb +1 -4
  30. data/test/test_05_rows.rb +1 -4
  31. data/test/test_06_extsst.rb +1 -4
  32. data/test/test_11_date_time.rb +1 -4
  33. data/test/test_12_date_only.rb +1 -4
  34. data/test/test_13_date_seconds.rb +1 -4
  35. data/test/test_21_escher.rb +1 -4
  36. data/test/test_22_mso_drawing_group.rb +1 -4
  37. data/test/test_23_note.rb +1 -4
  38. data/test/test_24_txo.rb +1 -4
  39. data/test/test_25_position_object.rb +1 -4
  40. data/test/test_26_autofilter.rb +1 -4
  41. data/test/test_27_autofilter.rb +1 -4
  42. data/test/test_28_autofilter.rb +1 -4
  43. data/test/test_29_process_jpg.rb +1 -4
  44. data/test/test_30_validation_dval.rb +1 -4
  45. data/test/test_31_validation_dv_strings.rb +1 -4
  46. data/test/test_32_validation_dv_formula.rb +1 -4
  47. data/test/test_40_property_types.rb +1 -5
  48. data/test/test_41_properties.rb +1 -5
  49. data/test/test_42_set_properties.rb +1 -5
  50. data/test/test_50_name_stored.rb +1 -4
  51. data/test/test_51_name_print_area.rb +1 -4
  52. data/test/test_52_name_print_titles.rb +1 -4
  53. data/test/test_53_autofilter.rb +1 -4
  54. data/test/test_60_chart_generic.rb +1 -4
  55. data/test/test_61_chart_subclasses.rb +1 -4
  56. data/test/test_62_chart_formats.rb +1 -4
  57. data/test/test_63_chart_area_formats.rb +1 -4
  58. data/test/{tc_biff.rb → test_biff.rb} +1 -4
  59. data/test/{tc_example_match.rb → test_example_match.rb} +84 -69
  60. data/test/{tc_format.rb → test_format.rb} +1 -4
  61. data/test/{tc_formula.rb → test_formula.rb} +1 -4
  62. data/test/{tc_ole.rb → test_ole.rb} +1 -4
  63. data/test/{tc_storage_lite.rb → test_storage_lite.rb} +1 -4
  64. data/test/{tc_workbook.rb → test_workbook.rb} +1 -4
  65. data/test/{tc_worksheet.rb → test_worksheet.rb} +1 -4
  66. data/writeexcel.gemspec +287 -16
  67. metadata +123 -35
  68. data/test/tc_all.rb +0 -32
  69. data/test/tc_chart.rb +0 -22
  70. data/test/test_chartex.rb +0 -35
  71. data/test/ts_all.rb +0 -46
@@ -1,7 +1,4 @@
1
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
2
-
3
- require "test/unit"
4
- require "writeexcel"
1
+ require 'helper'
5
2
 
6
3
  class TC_Format < Test::Unit::TestCase
7
4
 
@@ -1,7 +1,4 @@
1
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
2
-
3
- require "test/unit"
4
- require "writeexcel"
1
+ require 'helper'
5
2
 
6
3
  class TC_Formula < Test::Unit::TestCase
7
4
 
@@ -1,7 +1,4 @@
1
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
2
-
3
- require "test/unit"
4
- require "writeexcel"
1
+ require 'helper'
5
2
 
6
3
  class TC_OLE < Test::Unit::TestCase
7
4
 
@@ -1,7 +1,4 @@
1
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
2
-
3
- require "test/unit"
4
- require "writeexcel/storage_lite"
1
+ require 'helper'
5
2
  require 'stringio'
6
3
 
7
4
  =begin
@@ -1,7 +1,4 @@
1
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
2
-
3
- require "test/unit"
4
- require "writeexcel"
1
+ require 'helper'
5
2
  require "stringio"
6
3
 
7
4
  class TC_Workbook < Test::Unit::TestCase
@@ -1,7 +1,4 @@
1
- $LOAD_PATH.unshift "#{File.dirname(__FILE__)}/../lib"
2
-
3
- require "test/unit"
4
- require "writeexcel"
1
+ require 'helper'
5
2
 
6
3
  class TC_Worksheet < Test::Unit::TestCase
7
4
  TEST_DIR = File.expand_path(File.dirname(__FILE__))
@@ -1,19 +1,290 @@
1
- require 'rubygems'
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
2
5
 
3
- version = '0.3.1'
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{writeexcel}
8
+ s.version = "0.3.2"
4
9
 
5
- spec = Gem::Specification.new do |s|
6
- s.name = 'writeexcel'
7
- s.version = version
8
- s.author = 'Hideo NAKAMURA'
9
- s.email = 'cxn03651@msj.biglobe.ne.jp'
10
- s.summary = 'Write to a cross-platform Excel binary file.'
11
- s.files = Dir['examples/**/*'] + Dir['lib/**/*.rb'] +
12
- Dir['[A-Z]*'] + Dir['test/**/*']
13
- s.require_path = 'lib'
14
- s.test_file = 'test/ts_all.rb'
15
- s.has_rdoc = true
16
- s.rdoc_options << 'README'
17
- s.required_ruby_version = '>=1.8'
18
- s.homepage = 'http://wiki.github.com/cxn03651/writeexcel/'
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Hideo NAKAMURA"]
12
+ s.date = %q{2010-04-06}
13
+ s.description = %q{Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, formulas, hyperlinks and images can be written to the cells.}
14
+ s.email = %q{cxn03651@msj.biglobe.ne.jp}
15
+ s.extra_rdoc_files = [
16
+ "README.rdoc"
17
+ ]
18
+ s.files = [
19
+ ".document",
20
+ ".gitignore",
21
+ "README.rdoc",
22
+ "Rakefile",
23
+ "VERSION",
24
+ "charts/chartex.rb",
25
+ "charts/demo1.rb",
26
+ "charts/demo101.bin",
27
+ "charts/demo2.rb",
28
+ "charts/demo201.bin",
29
+ "charts/demo3.rb",
30
+ "charts/demo301.bin",
31
+ "charts/demo4.rb",
32
+ "charts/demo401.bin",
33
+ "charts/demo5.rb",
34
+ "charts/demo501.bin",
35
+ "examples/a_simple.rb",
36
+ "examples/autofilter.rb",
37
+ "examples/bigfile.rb",
38
+ "examples/chart_area.rb",
39
+ "examples/chart_bar.rb",
40
+ "examples/chart_column.rb",
41
+ "examples/chart_line.rb",
42
+ "examples/chart_pie.rb",
43
+ "examples/chart_scatter.rb",
44
+ "examples/chart_stock.rb",
45
+ "examples/copyformat.rb",
46
+ "examples/data_validate.rb",
47
+ "examples/date_time.rb",
48
+ "examples/defined_name.rb",
49
+ "examples/demo.rb",
50
+ "examples/diag_border.rb",
51
+ "examples/formats.rb",
52
+ "examples/header.rb",
53
+ "examples/hidden.rb",
54
+ "examples/hyperlink.rb",
55
+ "examples/images.rb",
56
+ "examples/merge1.rb",
57
+ "examples/merge2.rb",
58
+ "examples/merge3.rb",
59
+ "examples/merge4.rb",
60
+ "examples/merge5.rb",
61
+ "examples/properties.rb",
62
+ "examples/properties_jp.rb",
63
+ "examples/protection.rb",
64
+ "examples/regions.rb",
65
+ "examples/repeat.rb",
66
+ "examples/republic.png",
67
+ "examples/stats.rb",
68
+ "examples/stocks.rb",
69
+ "examples/tab_colors.rb",
70
+ "examples/write_arrays.rb",
71
+ "lib/writeexcel.rb",
72
+ "lib/writeexcel/biffwriter.rb",
73
+ "lib/writeexcel/chart.rb",
74
+ "lib/writeexcel/charts/area.rb",
75
+ "lib/writeexcel/charts/bar.rb",
76
+ "lib/writeexcel/charts/column.rb",
77
+ "lib/writeexcel/charts/external.rb",
78
+ "lib/writeexcel/charts/line.rb",
79
+ "lib/writeexcel/charts/pie.rb",
80
+ "lib/writeexcel/charts/scatter.rb",
81
+ "lib/writeexcel/charts/stock.rb",
82
+ "lib/writeexcel/excelformula.y",
83
+ "lib/writeexcel/excelformulaparser.rb",
84
+ "lib/writeexcel/format.rb",
85
+ "lib/writeexcel/formula.rb",
86
+ "lib/writeexcel/olewriter.rb",
87
+ "lib/writeexcel/properties.rb",
88
+ "lib/writeexcel/storage_lite.rb",
89
+ "lib/writeexcel/workbook.rb",
90
+ "lib/writeexcel/worksheet.rb",
91
+ "test/excelfile/Chart1.xls",
92
+ "test/excelfile/Chart2.xls",
93
+ "test/excelfile/Chart3.xls",
94
+ "test/excelfile/Chart4.xls",
95
+ "test/excelfile/Chart5.xls",
96
+ "test/helper.rb",
97
+ "test/perl_output/Chart1.xls.data",
98
+ "test/perl_output/Chart2.xls.data",
99
+ "test/perl_output/Chart3.xls.data",
100
+ "test/perl_output/Chart4.xls.data",
101
+ "test/perl_output/Chart5.xls.data",
102
+ "test/perl_output/README",
103
+ "test/perl_output/a_simple.xls",
104
+ "test/perl_output/autofilter.xls",
105
+ "test/perl_output/biff_add_continue_testdata",
106
+ "test/perl_output/chart_area.xls",
107
+ "test/perl_output/chart_bar.xls",
108
+ "test/perl_output/chart_column.xls",
109
+ "test/perl_output/chart_line.xls",
110
+ "test/perl_output/data_validate.xls",
111
+ "test/perl_output/date_time.xls",
112
+ "test/perl_output/defined_name.xls",
113
+ "test/perl_output/demo.xls",
114
+ "test/perl_output/demo101.bin",
115
+ "test/perl_output/demo201.bin",
116
+ "test/perl_output/demo301.bin",
117
+ "test/perl_output/demo401.bin",
118
+ "test/perl_output/demo501.bin",
119
+ "test/perl_output/diag_border.xls",
120
+ "test/perl_output/f_font_biff",
121
+ "test/perl_output/f_font_key",
122
+ "test/perl_output/f_xf_biff",
123
+ "test/perl_output/file_font_biff",
124
+ "test/perl_output/file_font_key",
125
+ "test/perl_output/file_xf_biff",
126
+ "test/perl_output/headers.xls",
127
+ "test/perl_output/hidden.xls",
128
+ "test/perl_output/hyperlink.xls",
129
+ "test/perl_output/images.xls",
130
+ "test/perl_output/merge1.xls",
131
+ "test/perl_output/merge2.xls",
132
+ "test/perl_output/merge3.xls",
133
+ "test/perl_output/merge4.xls",
134
+ "test/perl_output/merge5.xls",
135
+ "test/perl_output/ole_write_header",
136
+ "test/perl_output/protection.xls",
137
+ "test/perl_output/regions.xls",
138
+ "test/perl_output/stats.xls",
139
+ "test/perl_output/stocks.xls",
140
+ "test/perl_output/tab_colors.xls",
141
+ "test/perl_output/unicode_cyrillic.xls",
142
+ "test/perl_output/workbook1.xls",
143
+ "test/perl_output/workbook2.xls",
144
+ "test/perl_output/ws_colinfo",
145
+ "test/perl_output/ws_store_colinfo",
146
+ "test/perl_output/ws_store_dimensions",
147
+ "test/perl_output/ws_store_filtermode",
148
+ "test/perl_output/ws_store_filtermode_off",
149
+ "test/perl_output/ws_store_filtermode_on",
150
+ "test/perl_output/ws_store_selection",
151
+ "test/perl_output/ws_store_window2",
152
+ "test/republic.png",
153
+ "test/test_00_IEEE_double.rb",
154
+ "test/test_01_add_worksheet.rb",
155
+ "test/test_02_merge_formats.rb",
156
+ "test/test_04_dimensions.rb",
157
+ "test/test_05_rows.rb",
158
+ "test/test_06_extsst.rb",
159
+ "test/test_11_date_time.rb",
160
+ "test/test_12_date_only.rb",
161
+ "test/test_13_date_seconds.rb",
162
+ "test/test_21_escher.rb",
163
+ "test/test_22_mso_drawing_group.rb",
164
+ "test/test_23_note.rb",
165
+ "test/test_24_txo.rb",
166
+ "test/test_25_position_object.rb",
167
+ "test/test_26_autofilter.rb",
168
+ "test/test_27_autofilter.rb",
169
+ "test/test_28_autofilter.rb",
170
+ "test/test_29_process_jpg.rb",
171
+ "test/test_30_validation_dval.rb",
172
+ "test/test_31_validation_dv_strings.rb",
173
+ "test/test_32_validation_dv_formula.rb",
174
+ "test/test_40_property_types.rb",
175
+ "test/test_41_properties.rb",
176
+ "test/test_42_set_properties.rb",
177
+ "test/test_50_name_stored.rb",
178
+ "test/test_51_name_print_area.rb",
179
+ "test/test_52_name_print_titles.rb",
180
+ "test/test_53_autofilter.rb",
181
+ "test/test_60_chart_generic.rb",
182
+ "test/test_61_chart_subclasses.rb",
183
+ "test/test_62_chart_formats.rb",
184
+ "test/test_63_chart_area_formats.rb",
185
+ "test/test_biff.rb",
186
+ "test/test_example_match.rb",
187
+ "test/test_format.rb",
188
+ "test/test_formula.rb",
189
+ "test/test_ole.rb",
190
+ "test/test_storage_lite.rb",
191
+ "test/test_workbook.rb",
192
+ "test/test_worksheet.rb",
193
+ "writeexcel.gemspec",
194
+ "writeexcel.rdoc"
195
+ ]
196
+ s.homepage = %q{http://wiki.github.com/cxn03651/writeexcel/}
197
+ s.rdoc_options = ["--charset=UTF-8"]
198
+ s.require_paths = ["lib"]
199
+ s.rubygems_version = %q{1.3.6}
200
+ s.summary = %q{Write to a cross-platform Excel binary file.}
201
+ s.test_files = [
202
+ "test/helper.rb",
203
+ "test/test_00_IEEE_double.rb",
204
+ "test/test_01_add_worksheet.rb",
205
+ "test/test_02_merge_formats.rb",
206
+ "test/test_04_dimensions.rb",
207
+ "test/test_05_rows.rb",
208
+ "test/test_06_extsst.rb",
209
+ "test/test_11_date_time.rb",
210
+ "test/test_12_date_only.rb",
211
+ "test/test_13_date_seconds.rb",
212
+ "test/test_21_escher.rb",
213
+ "test/test_22_mso_drawing_group.rb",
214
+ "test/test_23_note.rb",
215
+ "test/test_24_txo.rb",
216
+ "test/test_25_position_object.rb",
217
+ "test/test_26_autofilter.rb",
218
+ "test/test_27_autofilter.rb",
219
+ "test/test_28_autofilter.rb",
220
+ "test/test_29_process_jpg.rb",
221
+ "test/test_30_validation_dval.rb",
222
+ "test/test_31_validation_dv_strings.rb",
223
+ "test/test_32_validation_dv_formula.rb",
224
+ "test/test_40_property_types.rb",
225
+ "test/test_41_properties.rb",
226
+ "test/test_42_set_properties.rb",
227
+ "test/test_50_name_stored.rb",
228
+ "test/test_51_name_print_area.rb",
229
+ "test/test_52_name_print_titles.rb",
230
+ "test/test_53_autofilter.rb",
231
+ "test/test_60_chart_generic.rb",
232
+ "test/test_61_chart_subclasses.rb",
233
+ "test/test_62_chart_formats.rb",
234
+ "test/test_63_chart_area_formats.rb",
235
+ "test/test_biff.rb",
236
+ "test/test_example_match.rb",
237
+ "test/test_format.rb",
238
+ "test/test_formula.rb",
239
+ "test/test_ole.rb",
240
+ "test/test_storage_lite.rb",
241
+ "test/test_workbook.rb",
242
+ "test/test_worksheet.rb",
243
+ "examples/autofilter.rb",
244
+ "examples/a_simple.rb",
245
+ "examples/bigfile.rb",
246
+ "examples/chart_area.rb",
247
+ "examples/chart_bar.rb",
248
+ "examples/chart_column.rb",
249
+ "examples/chart_line.rb",
250
+ "examples/chart_pie.rb",
251
+ "examples/chart_scatter.rb",
252
+ "examples/chart_stock.rb",
253
+ "examples/copyformat.rb",
254
+ "examples/data_validate.rb",
255
+ "examples/date_time.rb",
256
+ "examples/defined_name.rb",
257
+ "examples/demo.rb",
258
+ "examples/diag_border.rb",
259
+ "examples/formats.rb",
260
+ "examples/header.rb",
261
+ "examples/hidden.rb",
262
+ "examples/hyperlink.rb",
263
+ "examples/images.rb",
264
+ "examples/merge1.rb",
265
+ "examples/merge2.rb",
266
+ "examples/merge3.rb",
267
+ "examples/merge4.rb",
268
+ "examples/merge5.rb",
269
+ "examples/properties.rb",
270
+ "examples/properties_jp.rb",
271
+ "examples/protection.rb",
272
+ "examples/regions.rb",
273
+ "examples/repeat.rb",
274
+ "examples/stats.rb",
275
+ "examples/stocks.rb",
276
+ "examples/tab_colors.rb",
277
+ "examples/write_arrays.rb"
278
+ ]
279
+
280
+ if s.respond_to? :specification_version then
281
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
282
+ s.specification_version = 3
283
+
284
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
285
+ else
286
+ end
287
+ else
288
+ end
19
289
  end
290
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 1
9
- version: 0.3.1
8
+ - 2
9
+ version: 0.3.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Hideo NAKAMURA
@@ -14,21 +14,37 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-05 00:00:00 +09:00
17
+ date: 2010-04-06 00:00:00 +09:00
18
18
  default_executable:
19
19
  dependencies: []
20
20
 
21
- description:
21
+ description: Multiple worksheets can be added to a workbook and formatting can be applied to cells. Text, numbers, formulas, hyperlinks and images can be written to the cells.
22
22
  email: cxn03651@msj.biglobe.ne.jp
23
23
  executables: []
24
24
 
25
25
  extensions: []
26
26
 
27
- extra_rdoc_files: []
28
-
27
+ extra_rdoc_files:
28
+ - README.rdoc
29
29
  files:
30
- - examples/autofilter.rb
30
+ - .document
31
+ - .gitignore
32
+ - README.rdoc
33
+ - Rakefile
34
+ - VERSION
35
+ - charts/chartex.rb
36
+ - charts/demo1.rb
37
+ - charts/demo101.bin
38
+ - charts/demo2.rb
39
+ - charts/demo201.bin
40
+ - charts/demo3.rb
41
+ - charts/demo301.bin
42
+ - charts/demo4.rb
43
+ - charts/demo401.bin
44
+ - charts/demo5.rb
45
+ - charts/demo501.bin
31
46
  - examples/a_simple.rb
47
+ - examples/autofilter.rb
32
48
  - examples/bigfile.rb
33
49
  - examples/chart_area.rb
34
50
  - examples/chart_bar.rb
@@ -63,6 +79,7 @@ files:
63
79
  - examples/stocks.rb
64
80
  - examples/tab_colors.rb
65
81
  - examples/write_arrays.rb
82
+ - lib/writeexcel.rb
66
83
  - lib/writeexcel/biffwriter.rb
67
84
  - lib/writeexcel/chart.rb
68
85
  - lib/writeexcel/charts/area.rb
@@ -73,6 +90,7 @@ files:
73
90
  - lib/writeexcel/charts/pie.rb
74
91
  - lib/writeexcel/charts/scatter.rb
75
92
  - lib/writeexcel/charts/stock.rb
93
+ - lib/writeexcel/excelformula.y
76
94
  - lib/writeexcel/excelformulaparser.rb
77
95
  - lib/writeexcel/format.rb
78
96
  - lib/writeexcel/formula.rb
@@ -81,29 +99,28 @@ files:
81
99
  - lib/writeexcel/storage_lite.rb
82
100
  - lib/writeexcel/workbook.rb
83
101
  - lib/writeexcel/worksheet.rb
84
- - lib/writeexcel.rb
85
- - README
86
- - writeexcel.gemspec
87
- - writeexcel.rdoc
88
102
  - test/excelfile/Chart1.xls
89
103
  - test/excelfile/Chart2.xls
90
104
  - test/excelfile/Chart3.xls
91
105
  - test/excelfile/Chart4.xls
92
106
  - test/excelfile/Chart5.xls
93
- - test/perl_output/autofilter.xls
94
- - test/perl_output/a_simple.xls
95
- - test/perl_output/biff_add_continue_testdata
107
+ - test/helper.rb
96
108
  - test/perl_output/Chart1.xls.data
97
109
  - test/perl_output/Chart2.xls.data
98
110
  - test/perl_output/Chart3.xls.data
99
111
  - test/perl_output/Chart4.xls.data
100
112
  - test/perl_output/Chart5.xls.data
113
+ - test/perl_output/README
114
+ - test/perl_output/a_simple.xls
115
+ - test/perl_output/autofilter.xls
116
+ - test/perl_output/biff_add_continue_testdata
101
117
  - test/perl_output/chart_area.xls
102
118
  - test/perl_output/chart_bar.xls
103
119
  - test/perl_output/chart_column.xls
104
120
  - test/perl_output/chart_line.xls
105
121
  - test/perl_output/data_validate.xls
106
122
  - test/perl_output/date_time.xls
123
+ - test/perl_output/defined_name.xls
107
124
  - test/perl_output/demo.xls
108
125
  - test/perl_output/demo101.bin
109
126
  - test/perl_output/demo201.bin
@@ -111,12 +128,12 @@ files:
111
128
  - test/perl_output/demo401.bin
112
129
  - test/perl_output/demo501.bin
113
130
  - test/perl_output/diag_border.xls
114
- - test/perl_output/file_font_biff
115
- - test/perl_output/file_font_key
116
- - test/perl_output/file_xf_biff
117
131
  - test/perl_output/f_font_biff
118
132
  - test/perl_output/f_font_key
119
133
  - test/perl_output/f_xf_biff
134
+ - test/perl_output/file_font_biff
135
+ - test/perl_output/file_font_key
136
+ - test/perl_output/file_xf_biff
120
137
  - test/perl_output/headers.xls
121
138
  - test/perl_output/hidden.xls
122
139
  - test/perl_output/hyperlink.xls
@@ -128,7 +145,6 @@ files:
128
145
  - test/perl_output/merge5.xls
129
146
  - test/perl_output/ole_write_header
130
147
  - test/perl_output/protection.xls
131
- - test/perl_output/README
132
148
  - test/perl_output/regions.xls
133
149
  - test/perl_output/stats.xls
134
150
  - test/perl_output/stocks.xls
@@ -145,16 +161,6 @@ files:
145
161
  - test/perl_output/ws_store_selection
146
162
  - test/perl_output/ws_store_window2
147
163
  - test/republic.png
148
- - test/tc_all.rb
149
- - test/tc_biff.rb
150
- - test/tc_chart.rb
151
- - test/tc_example_match.rb
152
- - test/tc_format.rb
153
- - test/tc_formula.rb
154
- - test/tc_ole.rb
155
- - test/tc_storage_lite.rb
156
- - test/tc_workbook.rb
157
- - test/tc_worksheet.rb
158
164
  - test/test_00_IEEE_double.rb
159
165
  - test/test_01_add_worksheet.rb
160
166
  - test/test_02_merge_formats.rb
@@ -187,15 +193,23 @@ files:
187
193
  - test/test_61_chart_subclasses.rb
188
194
  - test/test_62_chart_formats.rb
189
195
  - test/test_63_chart_area_formats.rb
190
- - test/test_chartex.rb
191
- - test/ts_all.rb
196
+ - test/test_biff.rb
197
+ - test/test_example_match.rb
198
+ - test/test_format.rb
199
+ - test/test_formula.rb
200
+ - test/test_ole.rb
201
+ - test/test_storage_lite.rb
202
+ - test/test_workbook.rb
203
+ - test/test_worksheet.rb
204
+ - writeexcel.gemspec
205
+ - writeexcel.rdoc
192
206
  has_rdoc: true
193
207
  homepage: http://wiki.github.com/cxn03651/writeexcel/
194
208
  licenses: []
195
209
 
196
210
  post_install_message:
197
211
  rdoc_options:
198
- - README
212
+ - --charset=UTF-8
199
213
  require_paths:
200
214
  - lib
201
215
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -203,9 +217,8 @@ required_ruby_version: !ruby/object:Gem::Requirement
203
217
  - - ">="
204
218
  - !ruby/object:Gem::Version
205
219
  segments:
206
- - 1
207
- - 8
208
- version: "1.8"
220
+ - 0
221
+ version: "0"
209
222
  required_rubygems_version: !ruby/object:Gem::Requirement
210
223
  requirements:
211
224
  - - ">="
@@ -221,4 +234,79 @@ signing_key:
221
234
  specification_version: 3
222
235
  summary: Write to a cross-platform Excel binary file.
223
236
  test_files:
224
- - test/ts_all.rb
237
+ - test/helper.rb
238
+ - test/test_00_IEEE_double.rb
239
+ - test/test_01_add_worksheet.rb
240
+ - test/test_02_merge_formats.rb
241
+ - test/test_04_dimensions.rb
242
+ - test/test_05_rows.rb
243
+ - test/test_06_extsst.rb
244
+ - test/test_11_date_time.rb
245
+ - test/test_12_date_only.rb
246
+ - test/test_13_date_seconds.rb
247
+ - test/test_21_escher.rb
248
+ - test/test_22_mso_drawing_group.rb
249
+ - test/test_23_note.rb
250
+ - test/test_24_txo.rb
251
+ - test/test_25_position_object.rb
252
+ - test/test_26_autofilter.rb
253
+ - test/test_27_autofilter.rb
254
+ - test/test_28_autofilter.rb
255
+ - test/test_29_process_jpg.rb
256
+ - test/test_30_validation_dval.rb
257
+ - test/test_31_validation_dv_strings.rb
258
+ - test/test_32_validation_dv_formula.rb
259
+ - test/test_40_property_types.rb
260
+ - test/test_41_properties.rb
261
+ - test/test_42_set_properties.rb
262
+ - test/test_50_name_stored.rb
263
+ - test/test_51_name_print_area.rb
264
+ - test/test_52_name_print_titles.rb
265
+ - test/test_53_autofilter.rb
266
+ - test/test_60_chart_generic.rb
267
+ - test/test_61_chart_subclasses.rb
268
+ - test/test_62_chart_formats.rb
269
+ - test/test_63_chart_area_formats.rb
270
+ - test/test_biff.rb
271
+ - test/test_example_match.rb
272
+ - test/test_format.rb
273
+ - test/test_formula.rb
274
+ - test/test_ole.rb
275
+ - test/test_storage_lite.rb
276
+ - test/test_workbook.rb
277
+ - test/test_worksheet.rb
278
+ - examples/autofilter.rb
279
+ - examples/a_simple.rb
280
+ - examples/bigfile.rb
281
+ - examples/chart_area.rb
282
+ - examples/chart_bar.rb
283
+ - examples/chart_column.rb
284
+ - examples/chart_line.rb
285
+ - examples/chart_pie.rb
286
+ - examples/chart_scatter.rb
287
+ - examples/chart_stock.rb
288
+ - examples/copyformat.rb
289
+ - examples/data_validate.rb
290
+ - examples/date_time.rb
291
+ - examples/defined_name.rb
292
+ - examples/demo.rb
293
+ - examples/diag_border.rb
294
+ - examples/formats.rb
295
+ - examples/header.rb
296
+ - examples/hidden.rb
297
+ - examples/hyperlink.rb
298
+ - examples/images.rb
299
+ - examples/merge1.rb
300
+ - examples/merge2.rb
301
+ - examples/merge3.rb
302
+ - examples/merge4.rb
303
+ - examples/merge5.rb
304
+ - examples/properties.rb
305
+ - examples/properties_jp.rb
306
+ - examples/protection.rb
307
+ - examples/regions.rb
308
+ - examples/repeat.rb
309
+ - examples/stats.rb
310
+ - examples/stocks.rb
311
+ - examples/tab_colors.rb
312
+ - examples/write_arrays.rb