roo 1.13.2 → 2.0.1

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.
Files changed (175) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -0
  3. data/.simplecov +4 -0
  4. data/.travis.yml +13 -0
  5. data/CHANGELOG.md +515 -0
  6. data/Gemfile +16 -10
  7. data/Guardfile +24 -0
  8. data/LICENSE +3 -1
  9. data/README.md +254 -0
  10. data/Rakefile +23 -23
  11. data/examples/roo_soap_client.rb +28 -31
  12. data/examples/roo_soap_server.rb +4 -6
  13. data/examples/write_me.rb +9 -10
  14. data/lib/roo/base.rb +334 -395
  15. data/lib/roo/csv.rb +120 -113
  16. data/lib/roo/excelx/cell.rb +77 -0
  17. data/lib/roo/excelx/comments.rb +22 -0
  18. data/lib/roo/excelx/extractor.rb +22 -0
  19. data/lib/roo/excelx/relationships.rb +25 -0
  20. data/lib/roo/excelx/shared_strings.rb +37 -0
  21. data/lib/roo/excelx/sheet.rb +107 -0
  22. data/lib/roo/excelx/sheet_doc.rb +200 -0
  23. data/lib/roo/excelx/styles.rb +64 -0
  24. data/lib/roo/excelx/workbook.rb +59 -0
  25. data/lib/roo/excelx.rb +413 -597
  26. data/lib/roo/font.rb +17 -0
  27. data/lib/roo/libre_office.rb +5 -0
  28. data/lib/roo/link.rb +15 -0
  29. data/lib/roo/{openoffice.rb → open_office.rb} +681 -496
  30. data/lib/roo/spreadsheet.rb +20 -23
  31. data/lib/roo/utils.rb +78 -0
  32. data/lib/roo/version.rb +3 -0
  33. data/lib/roo.rb +18 -24
  34. data/roo.gemspec +20 -204
  35. data/spec/lib/roo/base_spec.rb +1 -4
  36. data/spec/lib/roo/csv_spec.rb +21 -13
  37. data/spec/lib/roo/excelx/format_spec.rb +7 -6
  38. data/spec/lib/roo/excelx_spec.rb +424 -11
  39. data/spec/lib/roo/libreoffice_spec.rb +16 -6
  40. data/spec/lib/roo/openoffice_spec.rb +13 -8
  41. data/spec/lib/roo/spreadsheet_spec.rb +40 -12
  42. data/spec/lib/roo/utils_spec.rb +106 -0
  43. data/spec/spec_helper.rb +2 -1
  44. data/test/test_generic_spreadsheet.rb +117 -139
  45. data/test/test_helper.rb +9 -56
  46. data/test/test_roo.rb +274 -478
  47. metadata +65 -303
  48. data/CHANGELOG +0 -417
  49. data/Gemfile.lock +0 -78
  50. data/README.markdown +0 -126
  51. data/VERSION +0 -1
  52. data/lib/roo/excel.rb +0 -355
  53. data/lib/roo/excel2003xml.rb +0 -300
  54. data/lib/roo/google.rb +0 -292
  55. data/lib/roo/roo_rails_helper.rb +0 -83
  56. data/lib/roo/worksheet.rb +0 -18
  57. data/scripts/txt2html +0 -67
  58. data/spec/lib/roo/excel2003xml_spec.rb +0 -15
  59. data/spec/lib/roo/excel_spec.rb +0 -17
  60. data/spec/lib/roo/google_spec.rb +0 -64
  61. data/test/files/1900_base.xls +0 -0
  62. data/test/files/1900_base.xlsx +0 -0
  63. data/test/files/1904_base.xls +0 -0
  64. data/test/files/1904_base.xlsx +0 -0
  65. data/test/files/Bibelbund.csv +0 -3741
  66. data/test/files/Bibelbund.ods +0 -0
  67. data/test/files/Bibelbund.xls +0 -0
  68. data/test/files/Bibelbund.xlsx +0 -0
  69. data/test/files/Bibelbund.xml +0 -62518
  70. data/test/files/Bibelbund1.ods +0 -0
  71. data/test/files/Pfand_from_windows_phone.xlsx +0 -0
  72. data/test/files/bad_excel_date.xls +0 -0
  73. data/test/files/bbu.ods +0 -0
  74. data/test/files/bbu.xls +0 -0
  75. data/test/files/bbu.xlsx +0 -0
  76. data/test/files/bbu.xml +0 -152
  77. data/test/files/bode-v1.ods.zip +0 -0
  78. data/test/files/bode-v1.xls.zip +0 -0
  79. data/test/files/boolean.csv +0 -2
  80. data/test/files/boolean.ods +0 -0
  81. data/test/files/boolean.xls +0 -0
  82. data/test/files/boolean.xlsx +0 -0
  83. data/test/files/boolean.xml +0 -112
  84. data/test/files/borders.ods +0 -0
  85. data/test/files/borders.xls +0 -0
  86. data/test/files/borders.xlsx +0 -0
  87. data/test/files/borders.xml +0 -144
  88. data/test/files/bug-numbered-sheet-names.xlsx +0 -0
  89. data/test/files/bug-row-column-fixnum-float.xls +0 -0
  90. data/test/files/bug-row-column-fixnum-float.xml +0 -127
  91. data/test/files/comments.ods +0 -0
  92. data/test/files/comments.xls +0 -0
  93. data/test/files/comments.xlsx +0 -0
  94. data/test/files/csvtypes.csv +0 -1
  95. data/test/files/datetime.ods +0 -0
  96. data/test/files/datetime.xls +0 -0
  97. data/test/files/datetime.xlsx +0 -0
  98. data/test/files/datetime.xml +0 -142
  99. data/test/files/datetime_floatconv.xls +0 -0
  100. data/test/files/datetime_floatconv.xml +0 -148
  101. data/test/files/dreimalvier.ods +0 -0
  102. data/test/files/emptysheets.ods +0 -0
  103. data/test/files/emptysheets.xls +0 -0
  104. data/test/files/emptysheets.xlsx +0 -0
  105. data/test/files/emptysheets.xml +0 -105
  106. data/test/files/excel2003.xml +0 -21140
  107. data/test/files/false_encoding.xls +0 -0
  108. data/test/files/false_encoding.xml +0 -132
  109. data/test/files/file_item_error.xlsx +0 -0
  110. data/test/files/formula.ods +0 -0
  111. data/test/files/formula.xls +0 -0
  112. data/test/files/formula.xlsx +0 -0
  113. data/test/files/formula.xml +0 -134
  114. data/test/files/formula_parse_error.xls +0 -0
  115. data/test/files/formula_parse_error.xml +0 -1833
  116. data/test/files/formula_string_error.xlsx +0 -0
  117. data/test/files/html-escape.ods +0 -0
  118. data/test/files/link.xls +0 -0
  119. data/test/files/link.xlsx +0 -0
  120. data/test/files/matrix.ods +0 -0
  121. data/test/files/matrix.xls +0 -0
  122. data/test/files/named_cells.ods +0 -0
  123. data/test/files/named_cells.xls +0 -0
  124. data/test/files/named_cells.xlsx +0 -0
  125. data/test/files/no_spreadsheet_file.txt +0 -1
  126. data/test/files/numbers1.csv +0 -18
  127. data/test/files/numbers1.ods +0 -0
  128. data/test/files/numbers1.xls +0 -0
  129. data/test/files/numbers1.xlsx +0 -0
  130. data/test/files/numbers1.xml +0 -312
  131. data/test/files/numeric-link.xlsx +0 -0
  132. data/test/files/only_one_sheet.ods +0 -0
  133. data/test/files/only_one_sheet.xls +0 -0
  134. data/test/files/only_one_sheet.xlsx +0 -0
  135. data/test/files/only_one_sheet.xml +0 -67
  136. data/test/files/paragraph.ods +0 -0
  137. data/test/files/paragraph.xls +0 -0
  138. data/test/files/paragraph.xlsx +0 -0
  139. data/test/files/paragraph.xml +0 -127
  140. data/test/files/prova.xls +0 -0
  141. data/test/files/ric.ods +0 -0
  142. data/test/files/simple_spreadsheet.ods +0 -0
  143. data/test/files/simple_spreadsheet.xls +0 -0
  144. data/test/files/simple_spreadsheet.xlsx +0 -0
  145. data/test/files/simple_spreadsheet.xml +0 -225
  146. data/test/files/simple_spreadsheet_from_italo.ods +0 -0
  147. data/test/files/simple_spreadsheet_from_italo.xls +0 -0
  148. data/test/files/simple_spreadsheet_from_italo.xml +0 -242
  149. data/test/files/so_datetime.csv +0 -7
  150. data/test/files/style.ods +0 -0
  151. data/test/files/style.xls +0 -0
  152. data/test/files/style.xlsx +0 -0
  153. data/test/files/style.xml +0 -154
  154. data/test/files/time-test.csv +0 -2
  155. data/test/files/time-test.ods +0 -0
  156. data/test/files/time-test.xls +0 -0
  157. data/test/files/time-test.xlsx +0 -0
  158. data/test/files/time-test.xml +0 -131
  159. data/test/files/type_excel.ods +0 -0
  160. data/test/files/type_excel.xlsx +0 -0
  161. data/test/files/type_excelx.ods +0 -0
  162. data/test/files/type_excelx.xls +0 -0
  163. data/test/files/type_openoffice.xls +0 -0
  164. data/test/files/type_openoffice.xlsx +0 -0
  165. data/test/files/whitespace.ods +0 -0
  166. data/test/files/whitespace.xls +0 -0
  167. data/test/files/whitespace.xlsx +0 -0
  168. data/test/files/whitespace.xml +0 -184
  169. data/test/rm_sub_test.rb +0 -12
  170. data/test/rm_test.rb +0 -7
  171. data/website/index.html +0 -385
  172. data/website/index.txt +0 -423
  173. data/website/javascripts/rounded_corners_lite.inc.js +0 -285
  174. data/website/stylesheets/screen.css +0 -130
  175. data/website/template.rhtml +0 -48
metadata CHANGED
@@ -1,259 +1,149 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roo
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.2
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Preymesser
8
8
  - Hugh McGowan
9
9
  - Ben Woosley
10
+ - Oleksandr Simonov
10
11
  autorequire:
11
12
  bindir: bin
12
13
  cert_chain: []
13
- date: 2013-12-23 00:00:00.000000000 Z
14
+ date: 2015-06-01 00:00:00.000000000 Z
14
15
  dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: spreadsheet
17
- requirement: !ruby/object:Gem::Requirement
18
- requirements:
19
- - - '>'
20
- - !ruby/object:Gem::Version
21
- version: 0.6.4
22
- type: :runtime
23
- prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- requirements:
26
- - - '>'
27
- - !ruby/object:Gem::Version
28
- version: 0.6.4
29
16
  - !ruby/object:Gem::Dependency
30
17
  name: nokogiri
31
18
  requirement: !ruby/object:Gem::Requirement
32
19
  requirements:
33
- - - '>='
20
+ - - "~>"
34
21
  - !ruby/object:Gem::Version
35
- version: '0'
22
+ version: '1'
36
23
  type: :runtime
37
24
  prerelease: false
38
25
  version_requirements: !ruby/object:Gem::Requirement
39
26
  requirements:
40
- - - '>='
27
+ - - "~>"
41
28
  - !ruby/object:Gem::Version
42
- version: '0'
29
+ version: '1'
43
30
  - !ruby/object:Gem::Dependency
44
31
  name: rubyzip
45
32
  requirement: !ruby/object:Gem::Requirement
46
33
  requirements:
47
- - - '>='
34
+ - - "~>"
35
+ - !ruby/object:Gem::Version
36
+ version: '1.1'
37
+ - - "<"
48
38
  - !ruby/object:Gem::Version
49
- version: '0'
39
+ version: 2.0.0
50
40
  type: :runtime
51
41
  prerelease: false
52
42
  version_requirements: !ruby/object:Gem::Requirement
53
43
  requirements:
54
- - - '>='
44
+ - - "~>"
55
45
  - !ruby/object:Gem::Version
56
- version: '0'
46
+ version: '1.1'
47
+ - - "<"
48
+ - !ruby/object:Gem::Version
49
+ version: 2.0.0
57
50
  - !ruby/object:Gem::Dependency
58
- name: google_drive
51
+ name: rake
59
52
  requirement: !ruby/object:Gem::Requirement
60
53
  requirements:
61
- - - '>='
54
+ - - "~>"
62
55
  - !ruby/object:Gem::Version
63
- version: '0'
56
+ version: '10.1'
64
57
  type: :development
65
58
  prerelease: false
66
59
  version_requirements: !ruby/object:Gem::Requirement
67
60
  requirements:
68
- - - '>='
61
+ - - "~>"
69
62
  - !ruby/object:Gem::Version
70
- version: '0'
63
+ version: '10.1'
71
64
  - !ruby/object:Gem::Dependency
72
- name: jeweler
65
+ name: minitest
73
66
  requirement: !ruby/object:Gem::Requirement
74
67
  requirements:
75
- - - '>='
68
+ - - "~>"
69
+ - !ruby/object:Gem::Version
70
+ version: '5.4'
71
+ - - ">="
76
72
  - !ruby/object:Gem::Version
77
- version: '0'
73
+ version: 5.4.3
78
74
  type: :development
79
75
  prerelease: false
80
76
  version_requirements: !ruby/object:Gem::Requirement
81
77
  requirements:
82
- - - '>='
78
+ - - "~>"
83
79
  - !ruby/object:Gem::Version
84
- version: '0'
80
+ version: '5.4'
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: 5.4.3
85
84
  description: |-
86
85
  Roo can access the contents of various spreadsheet files. It can handle
87
86
  * OpenOffice
88
- * Excel
89
- * Google spreadsheets
90
87
  * Excelx
91
88
  * LibreOffice
92
89
  * CSV
93
- email: ruby.ruby.ruby.roo@gmail.com
90
+ email:
91
+ - ruby.ruby.ruby.roo@gmail.com
92
+ - oleksandr@simonov.me
94
93
  executables: []
95
94
  extensions: []
96
- extra_rdoc_files:
97
- - LICENSE
98
- - README.markdown
95
+ extra_rdoc_files: []
99
96
  files:
100
- - CHANGELOG
97
+ - ".gitignore"
98
+ - ".simplecov"
99
+ - ".travis.yml"
100
+ - CHANGELOG.md
101
101
  - Gemfile
102
- - Gemfile.lock
102
+ - Guardfile
103
103
  - LICENSE
104
- - README.markdown
104
+ - README.md
105
105
  - Rakefile
106
- - VERSION
107
106
  - examples/roo_soap_client.rb
108
107
  - examples/roo_soap_server.rb
109
108
  - examples/write_me.rb
110
109
  - lib/roo.rb
111
110
  - lib/roo/base.rb
112
111
  - lib/roo/csv.rb
113
- - lib/roo/excel.rb
114
- - lib/roo/excel2003xml.rb
115
112
  - lib/roo/excelx.rb
116
- - lib/roo/google.rb
117
- - lib/roo/openoffice.rb
118
- - lib/roo/roo_rails_helper.rb
113
+ - lib/roo/excelx/cell.rb
114
+ - lib/roo/excelx/comments.rb
115
+ - lib/roo/excelx/extractor.rb
116
+ - lib/roo/excelx/relationships.rb
117
+ - lib/roo/excelx/shared_strings.rb
118
+ - lib/roo/excelx/sheet.rb
119
+ - lib/roo/excelx/sheet_doc.rb
120
+ - lib/roo/excelx/styles.rb
121
+ - lib/roo/excelx/workbook.rb
122
+ - lib/roo/font.rb
123
+ - lib/roo/libre_office.rb
124
+ - lib/roo/link.rb
125
+ - lib/roo/open_office.rb
119
126
  - lib/roo/spreadsheet.rb
120
- - lib/roo/worksheet.rb
127
+ - lib/roo/utils.rb
128
+ - lib/roo/version.rb
121
129
  - roo.gemspec
122
- - scripts/txt2html
123
130
  - spec/fixtures/vcr_cassettes/google_drive.yml
124
131
  - spec/fixtures/vcr_cassettes/google_drive_access_token.yml
125
132
  - spec/fixtures/vcr_cassettes/google_drive_set.yml
126
133
  - spec/lib/roo/base_spec.rb
127
134
  - spec/lib/roo/csv_spec.rb
128
- - spec/lib/roo/excel2003xml_spec.rb
129
- - spec/lib/roo/excel_spec.rb
130
135
  - spec/lib/roo/excelx/format_spec.rb
131
136
  - spec/lib/roo/excelx_spec.rb
132
- - spec/lib/roo/google_spec.rb
133
137
  - spec/lib/roo/libreoffice_spec.rb
134
138
  - spec/lib/roo/openoffice_spec.rb
135
139
  - spec/lib/roo/spreadsheet_spec.rb
140
+ - spec/lib/roo/utils_spec.rb
136
141
  - spec/spec_helper.rb
137
142
  - test/all_ss.rb
138
- - test/files/1900_base.xls
139
- - test/files/1900_base.xlsx
140
- - test/files/1904_base.xls
141
- - test/files/1904_base.xlsx
142
- - test/files/Bibelbund.csv
143
- - test/files/Bibelbund.ods
144
- - test/files/Bibelbund.xls
145
- - test/files/Bibelbund.xlsx
146
- - test/files/Bibelbund.xml
147
- - test/files/Bibelbund1.ods
148
- - test/files/Pfand_from_windows_phone.xlsx
149
- - test/files/bad_excel_date.xls
150
- - test/files/bbu.ods
151
- - test/files/bbu.xls
152
- - test/files/bbu.xlsx
153
- - test/files/bbu.xml
154
- - test/files/bode-v1.ods.zip
155
- - test/files/bode-v1.xls.zip
156
- - test/files/boolean.csv
157
- - test/files/boolean.ods
158
- - test/files/boolean.xls
159
- - test/files/boolean.xlsx
160
- - test/files/boolean.xml
161
- - test/files/borders.ods
162
- - test/files/borders.xls
163
- - test/files/borders.xlsx
164
- - test/files/borders.xml
165
- - test/files/bug-numbered-sheet-names.xlsx
166
- - test/files/bug-row-column-fixnum-float.xls
167
- - test/files/bug-row-column-fixnum-float.xml
168
- - test/files/comments.ods
169
- - test/files/comments.xls
170
- - test/files/comments.xlsx
171
- - test/files/csvtypes.csv
172
- - test/files/datetime.ods
173
- - test/files/datetime.xls
174
- - test/files/datetime.xlsx
175
- - test/files/datetime.xml
176
- - test/files/datetime_floatconv.xls
177
- - test/files/datetime_floatconv.xml
178
- - test/files/dreimalvier.ods
179
- - test/files/emptysheets.ods
180
- - test/files/emptysheets.xls
181
- - test/files/emptysheets.xlsx
182
- - test/files/emptysheets.xml
183
- - test/files/excel2003.xml
184
- - test/files/false_encoding.xls
185
- - test/files/false_encoding.xml
186
- - test/files/file_item_error.xlsx
187
- - test/files/formula.ods
188
- - test/files/formula.xls
189
- - test/files/formula.xlsx
190
- - test/files/formula.xml
191
- - test/files/formula_parse_error.xls
192
- - test/files/formula_parse_error.xml
193
- - test/files/formula_string_error.xlsx
194
- - test/files/html-escape.ods
195
- - test/files/link.xls
196
- - test/files/link.xlsx
197
- - test/files/matrix.ods
198
- - test/files/matrix.xls
199
- - test/files/named_cells.ods
200
- - test/files/named_cells.xls
201
- - test/files/named_cells.xlsx
202
- - test/files/no_spreadsheet_file.txt
203
- - test/files/numbers1.csv
204
- - test/files/numbers1.ods
205
- - test/files/numbers1.xls
206
- - test/files/numbers1.xlsx
207
- - test/files/numbers1.xml
208
- - test/files/numeric-link.xlsx
209
- - test/files/only_one_sheet.ods
210
- - test/files/only_one_sheet.xls
211
- - test/files/only_one_sheet.xlsx
212
- - test/files/only_one_sheet.xml
213
- - test/files/paragraph.ods
214
- - test/files/paragraph.xls
215
- - test/files/paragraph.xlsx
216
- - test/files/paragraph.xml
217
- - test/files/prova.xls
218
- - test/files/ric.ods
219
- - test/files/simple_spreadsheet.ods
220
- - test/files/simple_spreadsheet.xls
221
- - test/files/simple_spreadsheet.xlsx
222
- - test/files/simple_spreadsheet.xml
223
- - test/files/simple_spreadsheet_from_italo.ods
224
- - test/files/simple_spreadsheet_from_italo.xls
225
- - test/files/simple_spreadsheet_from_italo.xml
226
- - test/files/so_datetime.csv
227
- - test/files/style.ods
228
- - test/files/style.xls
229
- - test/files/style.xlsx
230
- - test/files/style.xml
231
- - test/files/time-test.csv
232
- - test/files/time-test.ods
233
- - test/files/time-test.xls
234
- - test/files/time-test.xlsx
235
- - test/files/time-test.xml
236
- - test/files/type_excel.ods
237
- - test/files/type_excel.xlsx
238
- - test/files/type_excelx.ods
239
- - test/files/type_excelx.xls
240
- - test/files/type_openoffice.xls
241
- - test/files/type_openoffice.xlsx
242
- - test/files/whitespace.ods
243
- - test/files/whitespace.xls
244
- - test/files/whitespace.xlsx
245
- - test/files/whitespace.xml
246
- - test/rm_sub_test.rb
247
- - test/rm_test.rb
248
143
  - test/test_generic_spreadsheet.rb
249
144
  - test/test_helper.rb
250
145
  - test/test_roo.rb
251
- - website/index.html
252
- - website/index.txt
253
- - website/javascripts/rounded_corners_lite.inc.js
254
- - website/stylesheets/screen.css
255
- - website/template.rhtml
256
- homepage: http://github.com/Empact/roo
146
+ homepage: http://github.com/roo-rb/roo
257
147
  licenses:
258
148
  - MIT
259
149
  metadata: {}
@@ -263,146 +153,18 @@ require_paths:
263
153
  - lib
264
154
  required_ruby_version: !ruby/object:Gem::Requirement
265
155
  requirements:
266
- - - '>='
156
+ - - ">="
267
157
  - !ruby/object:Gem::Version
268
- version: 1.9.0
158
+ version: '0'
269
159
  required_rubygems_version: !ruby/object:Gem::Requirement
270
160
  requirements:
271
- - - '>='
161
+ - - ">="
272
162
  - !ruby/object:Gem::Version
273
163
  version: '0'
274
164
  requirements: []
275
165
  rubyforge_project:
276
- rubygems_version: 2.0.14
166
+ rubygems_version: 2.4.5
277
167
  signing_key:
278
168
  specification_version: 4
279
169
  summary: Roo can access the contents of various spreadsheet files.
280
- test_files:
281
- - spec/fixtures/vcr_cassettes/google_drive.yml
282
- - spec/fixtures/vcr_cassettes/google_drive_access_token.yml
283
- - spec/fixtures/vcr_cassettes/google_drive_set.yml
284
- - spec/lib/roo/base_spec.rb
285
- - spec/lib/roo/csv_spec.rb
286
- - spec/lib/roo/excel2003xml_spec.rb
287
- - spec/lib/roo/excel_spec.rb
288
- - spec/lib/roo/excelx/format_spec.rb
289
- - spec/lib/roo/excelx_spec.rb
290
- - spec/lib/roo/google_spec.rb
291
- - spec/lib/roo/libreoffice_spec.rb
292
- - spec/lib/roo/openoffice_spec.rb
293
- - spec/lib/roo/spreadsheet_spec.rb
294
- - spec/spec_helper.rb
295
- - test/all_ss.rb
296
- - test/files/1900_base.xls
297
- - test/files/1900_base.xlsx
298
- - test/files/1904_base.xls
299
- - test/files/1904_base.xlsx
300
- - test/files/Bibelbund.csv
301
- - test/files/Bibelbund.ods
302
- - test/files/Bibelbund.xls
303
- - test/files/Bibelbund.xlsx
304
- - test/files/Bibelbund.xml
305
- - test/files/Bibelbund1.ods
306
- - test/files/Pfand_from_windows_phone.xlsx
307
- - test/files/bad_excel_date.xls
308
- - test/files/bbu.ods
309
- - test/files/bbu.xls
310
- - test/files/bbu.xlsx
311
- - test/files/bbu.xml
312
- - test/files/bode-v1.ods.zip
313
- - test/files/bode-v1.xls.zip
314
- - test/files/boolean.csv
315
- - test/files/boolean.ods
316
- - test/files/boolean.xls
317
- - test/files/boolean.xlsx
318
- - test/files/boolean.xml
319
- - test/files/borders.ods
320
- - test/files/borders.xls
321
- - test/files/borders.xlsx
322
- - test/files/borders.xml
323
- - test/files/bug-numbered-sheet-names.xlsx
324
- - test/files/bug-row-column-fixnum-float.xls
325
- - test/files/bug-row-column-fixnum-float.xml
326
- - test/files/comments.ods
327
- - test/files/comments.xls
328
- - test/files/comments.xlsx
329
- - test/files/csvtypes.csv
330
- - test/files/datetime.ods
331
- - test/files/datetime.xls
332
- - test/files/datetime.xlsx
333
- - test/files/datetime.xml
334
- - test/files/datetime_floatconv.xls
335
- - test/files/datetime_floatconv.xml
336
- - test/files/dreimalvier.ods
337
- - test/files/emptysheets.ods
338
- - test/files/emptysheets.xls
339
- - test/files/emptysheets.xlsx
340
- - test/files/emptysheets.xml
341
- - test/files/excel2003.xml
342
- - test/files/false_encoding.xls
343
- - test/files/false_encoding.xml
344
- - test/files/file_item_error.xlsx
345
- - test/files/formula.ods
346
- - test/files/formula.xls
347
- - test/files/formula.xlsx
348
- - test/files/formula.xml
349
- - test/files/formula_parse_error.xls
350
- - test/files/formula_parse_error.xml
351
- - test/files/formula_string_error.xlsx
352
- - test/files/html-escape.ods
353
- - test/files/link.xls
354
- - test/files/link.xlsx
355
- - test/files/matrix.ods
356
- - test/files/matrix.xls
357
- - test/files/named_cells.ods
358
- - test/files/named_cells.xls
359
- - test/files/named_cells.xlsx
360
- - test/files/no_spreadsheet_file.txt
361
- - test/files/numbers1.csv
362
- - test/files/numbers1.ods
363
- - test/files/numbers1.xls
364
- - test/files/numbers1.xlsx
365
- - test/files/numbers1.xml
366
- - test/files/numeric-link.xlsx
367
- - test/files/only_one_sheet.ods
368
- - test/files/only_one_sheet.xls
369
- - test/files/only_one_sheet.xlsx
370
- - test/files/only_one_sheet.xml
371
- - test/files/paragraph.ods
372
- - test/files/paragraph.xls
373
- - test/files/paragraph.xlsx
374
- - test/files/paragraph.xml
375
- - test/files/prova.xls
376
- - test/files/ric.ods
377
- - test/files/simple_spreadsheet.ods
378
- - test/files/simple_spreadsheet.xls
379
- - test/files/simple_spreadsheet.xlsx
380
- - test/files/simple_spreadsheet.xml
381
- - test/files/simple_spreadsheet_from_italo.ods
382
- - test/files/simple_spreadsheet_from_italo.xls
383
- - test/files/simple_spreadsheet_from_italo.xml
384
- - test/files/so_datetime.csv
385
- - test/files/style.ods
386
- - test/files/style.xls
387
- - test/files/style.xlsx
388
- - test/files/style.xml
389
- - test/files/time-test.csv
390
- - test/files/time-test.ods
391
- - test/files/time-test.xls
392
- - test/files/time-test.xlsx
393
- - test/files/time-test.xml
394
- - test/files/type_excel.ods
395
- - test/files/type_excel.xlsx
396
- - test/files/type_excelx.ods
397
- - test/files/type_excelx.xls
398
- - test/files/type_openoffice.xls
399
- - test/files/type_openoffice.xlsx
400
- - test/files/whitespace.ods
401
- - test/files/whitespace.xls
402
- - test/files/whitespace.xlsx
403
- - test/files/whitespace.xml
404
- - test/rm_sub_test.rb
405
- - test/rm_test.rb
406
- - test/test_generic_spreadsheet.rb
407
- - test/test_helper.rb
408
- - test/test_roo.rb
170
+ test_files: []