roo 1.13.2 → 2.7.0

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 (216) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +17 -0
  3. data/.github/ISSUE_TEMPLATE +10 -0
  4. data/.gitignore +11 -0
  5. data/.simplecov +4 -0
  6. data/.travis.yml +17 -0
  7. data/CHANGELOG.md +626 -0
  8. data/Gemfile +17 -12
  9. data/Gemfile_ruby2 +30 -0
  10. data/Guardfile +23 -0
  11. data/LICENSE +3 -1
  12. data/README.md +285 -0
  13. data/Rakefile +23 -23
  14. data/examples/roo_soap_client.rb +28 -31
  15. data/examples/roo_soap_server.rb +4 -6
  16. data/examples/write_me.rb +9 -10
  17. data/lib/roo/base.rb +298 -495
  18. data/lib/roo/constants.rb +5 -0
  19. data/lib/roo/csv.rb +127 -113
  20. data/lib/roo/errors.rb +11 -0
  21. data/lib/roo/excelx/cell/base.rb +94 -0
  22. data/lib/roo/excelx/cell/boolean.rb +27 -0
  23. data/lib/roo/excelx/cell/date.rb +28 -0
  24. data/lib/roo/excelx/cell/datetime.rb +111 -0
  25. data/lib/roo/excelx/cell/empty.rb +19 -0
  26. data/lib/roo/excelx/cell/number.rb +87 -0
  27. data/lib/roo/excelx/cell/string.rb +19 -0
  28. data/lib/roo/excelx/cell/time.rb +43 -0
  29. data/lib/roo/excelx/cell.rb +106 -0
  30. data/lib/roo/excelx/comments.rb +55 -0
  31. data/lib/roo/excelx/coordinate.rb +12 -0
  32. data/lib/roo/excelx/extractor.rb +21 -0
  33. data/lib/roo/excelx/format.rb +64 -0
  34. data/lib/roo/excelx/relationships.rb +25 -0
  35. data/lib/roo/excelx/shared.rb +32 -0
  36. data/lib/roo/excelx/shared_strings.rb +157 -0
  37. data/lib/roo/excelx/sheet.rb +112 -0
  38. data/lib/roo/excelx/sheet_doc.rb +211 -0
  39. data/lib/roo/excelx/styles.rb +64 -0
  40. data/lib/roo/excelx/workbook.rb +59 -0
  41. data/lib/roo/excelx.rb +376 -602
  42. data/lib/roo/font.rb +17 -0
  43. data/lib/roo/formatters/base.rb +15 -0
  44. data/lib/roo/formatters/csv.rb +84 -0
  45. data/lib/roo/formatters/matrix.rb +23 -0
  46. data/lib/roo/formatters/xml.rb +31 -0
  47. data/lib/roo/formatters/yaml.rb +40 -0
  48. data/lib/roo/libre_office.rb +4 -0
  49. data/lib/roo/link.rb +34 -0
  50. data/lib/roo/open_office.rb +626 -0
  51. data/lib/roo/spreadsheet.rb +22 -23
  52. data/lib/roo/tempdir.rb +21 -0
  53. data/lib/roo/utils.rb +78 -0
  54. data/lib/roo/version.rb +3 -0
  55. data/lib/roo.rb +23 -24
  56. data/roo.gemspec +21 -204
  57. data/spec/helpers.rb +5 -0
  58. data/spec/lib/roo/base_spec.rb +229 -3
  59. data/spec/lib/roo/csv_spec.rb +38 -11
  60. data/spec/lib/roo/excelx/format_spec.rb +7 -6
  61. data/spec/lib/roo/excelx_spec.rb +510 -11
  62. data/spec/lib/roo/libreoffice_spec.rb +16 -6
  63. data/spec/lib/roo/openoffice_spec.rb +30 -8
  64. data/spec/lib/roo/spreadsheet_spec.rb +60 -12
  65. data/spec/lib/roo/utils_spec.rb +106 -0
  66. data/spec/spec_helper.rb +7 -6
  67. data/test/all_ss.rb +12 -11
  68. data/test/excelx/cell/test_base.rb +63 -0
  69. data/test/excelx/cell/test_boolean.rb +36 -0
  70. data/test/excelx/cell/test_date.rb +38 -0
  71. data/test/excelx/cell/test_datetime.rb +45 -0
  72. data/test/excelx/cell/test_empty.rb +7 -0
  73. data/test/excelx/cell/test_number.rb +74 -0
  74. data/test/excelx/cell/test_string.rb +28 -0
  75. data/test/excelx/cell/test_time.rb +30 -0
  76. data/test/formatters/test_csv.rb +119 -0
  77. data/test/formatters/test_matrix.rb +76 -0
  78. data/test/formatters/test_xml.rb +74 -0
  79. data/test/formatters/test_yaml.rb +20 -0
  80. data/test/roo/test_csv.rb +52 -0
  81. data/test/roo/test_excelx.rb +186 -0
  82. data/test/roo/test_libre_office.rb +9 -0
  83. data/test/roo/test_open_office.rb +126 -0
  84. data/test/test_helper.rb +73 -53
  85. data/test/test_roo.rb +1211 -2292
  86. metadata +119 -298
  87. data/CHANGELOG +0 -417
  88. data/Gemfile.lock +0 -78
  89. data/README.markdown +0 -126
  90. data/VERSION +0 -1
  91. data/lib/roo/excel.rb +0 -355
  92. data/lib/roo/excel2003xml.rb +0 -300
  93. data/lib/roo/google.rb +0 -292
  94. data/lib/roo/openoffice.rb +0 -496
  95. data/lib/roo/roo_rails_helper.rb +0 -83
  96. data/lib/roo/worksheet.rb +0 -18
  97. data/scripts/txt2html +0 -67
  98. data/spec/lib/roo/excel2003xml_spec.rb +0 -15
  99. data/spec/lib/roo/excel_spec.rb +0 -17
  100. data/spec/lib/roo/google_spec.rb +0 -64
  101. data/test/files/1900_base.xls +0 -0
  102. data/test/files/1900_base.xlsx +0 -0
  103. data/test/files/1904_base.xls +0 -0
  104. data/test/files/1904_base.xlsx +0 -0
  105. data/test/files/Bibelbund.csv +0 -3741
  106. data/test/files/Bibelbund.ods +0 -0
  107. data/test/files/Bibelbund.xls +0 -0
  108. data/test/files/Bibelbund.xlsx +0 -0
  109. data/test/files/Bibelbund.xml +0 -62518
  110. data/test/files/Bibelbund1.ods +0 -0
  111. data/test/files/Pfand_from_windows_phone.xlsx +0 -0
  112. data/test/files/bad_excel_date.xls +0 -0
  113. data/test/files/bbu.ods +0 -0
  114. data/test/files/bbu.xls +0 -0
  115. data/test/files/bbu.xlsx +0 -0
  116. data/test/files/bbu.xml +0 -152
  117. data/test/files/bode-v1.ods.zip +0 -0
  118. data/test/files/bode-v1.xls.zip +0 -0
  119. data/test/files/boolean.csv +0 -2
  120. data/test/files/boolean.ods +0 -0
  121. data/test/files/boolean.xls +0 -0
  122. data/test/files/boolean.xlsx +0 -0
  123. data/test/files/boolean.xml +0 -112
  124. data/test/files/borders.ods +0 -0
  125. data/test/files/borders.xls +0 -0
  126. data/test/files/borders.xlsx +0 -0
  127. data/test/files/borders.xml +0 -144
  128. data/test/files/bug-numbered-sheet-names.xlsx +0 -0
  129. data/test/files/bug-row-column-fixnum-float.xls +0 -0
  130. data/test/files/bug-row-column-fixnum-float.xml +0 -127
  131. data/test/files/comments.ods +0 -0
  132. data/test/files/comments.xls +0 -0
  133. data/test/files/comments.xlsx +0 -0
  134. data/test/files/csvtypes.csv +0 -1
  135. data/test/files/datetime.ods +0 -0
  136. data/test/files/datetime.xls +0 -0
  137. data/test/files/datetime.xlsx +0 -0
  138. data/test/files/datetime.xml +0 -142
  139. data/test/files/datetime_floatconv.xls +0 -0
  140. data/test/files/datetime_floatconv.xml +0 -148
  141. data/test/files/dreimalvier.ods +0 -0
  142. data/test/files/emptysheets.ods +0 -0
  143. data/test/files/emptysheets.xls +0 -0
  144. data/test/files/emptysheets.xlsx +0 -0
  145. data/test/files/emptysheets.xml +0 -105
  146. data/test/files/excel2003.xml +0 -21140
  147. data/test/files/false_encoding.xls +0 -0
  148. data/test/files/false_encoding.xml +0 -132
  149. data/test/files/file_item_error.xlsx +0 -0
  150. data/test/files/formula.ods +0 -0
  151. data/test/files/formula.xls +0 -0
  152. data/test/files/formula.xlsx +0 -0
  153. data/test/files/formula.xml +0 -134
  154. data/test/files/formula_parse_error.xls +0 -0
  155. data/test/files/formula_parse_error.xml +0 -1833
  156. data/test/files/formula_string_error.xlsx +0 -0
  157. data/test/files/html-escape.ods +0 -0
  158. data/test/files/link.xls +0 -0
  159. data/test/files/link.xlsx +0 -0
  160. data/test/files/matrix.ods +0 -0
  161. data/test/files/matrix.xls +0 -0
  162. data/test/files/named_cells.ods +0 -0
  163. data/test/files/named_cells.xls +0 -0
  164. data/test/files/named_cells.xlsx +0 -0
  165. data/test/files/no_spreadsheet_file.txt +0 -1
  166. data/test/files/numbers1.csv +0 -18
  167. data/test/files/numbers1.ods +0 -0
  168. data/test/files/numbers1.xls +0 -0
  169. data/test/files/numbers1.xlsx +0 -0
  170. data/test/files/numbers1.xml +0 -312
  171. data/test/files/numeric-link.xlsx +0 -0
  172. data/test/files/only_one_sheet.ods +0 -0
  173. data/test/files/only_one_sheet.xls +0 -0
  174. data/test/files/only_one_sheet.xlsx +0 -0
  175. data/test/files/only_one_sheet.xml +0 -67
  176. data/test/files/paragraph.ods +0 -0
  177. data/test/files/paragraph.xls +0 -0
  178. data/test/files/paragraph.xlsx +0 -0
  179. data/test/files/paragraph.xml +0 -127
  180. data/test/files/prova.xls +0 -0
  181. data/test/files/ric.ods +0 -0
  182. data/test/files/simple_spreadsheet.ods +0 -0
  183. data/test/files/simple_spreadsheet.xls +0 -0
  184. data/test/files/simple_spreadsheet.xlsx +0 -0
  185. data/test/files/simple_spreadsheet.xml +0 -225
  186. data/test/files/simple_spreadsheet_from_italo.ods +0 -0
  187. data/test/files/simple_spreadsheet_from_italo.xls +0 -0
  188. data/test/files/simple_spreadsheet_from_italo.xml +0 -242
  189. data/test/files/so_datetime.csv +0 -7
  190. data/test/files/style.ods +0 -0
  191. data/test/files/style.xls +0 -0
  192. data/test/files/style.xlsx +0 -0
  193. data/test/files/style.xml +0 -154
  194. data/test/files/time-test.csv +0 -2
  195. data/test/files/time-test.ods +0 -0
  196. data/test/files/time-test.xls +0 -0
  197. data/test/files/time-test.xlsx +0 -0
  198. data/test/files/time-test.xml +0 -131
  199. data/test/files/type_excel.ods +0 -0
  200. data/test/files/type_excel.xlsx +0 -0
  201. data/test/files/type_excelx.ods +0 -0
  202. data/test/files/type_excelx.xls +0 -0
  203. data/test/files/type_openoffice.xls +0 -0
  204. data/test/files/type_openoffice.xlsx +0 -0
  205. data/test/files/whitespace.ods +0 -0
  206. data/test/files/whitespace.xls +0 -0
  207. data/test/files/whitespace.xlsx +0 -0
  208. data/test/files/whitespace.xml +0 -184
  209. data/test/rm_sub_test.rb +0 -12
  210. data/test/rm_test.rb +0 -7
  211. data/test/test_generic_spreadsheet.rb +0 -259
  212. data/website/index.html +0 -385
  213. data/website/index.txt +0 -423
  214. data/website/javascripts/rounded_corners_lite.inc.js +0 -285
  215. data/website/stylesheets/screen.css +0 -130
  216. data/website/template.rhtml +0 -48
metadata CHANGED
@@ -1,259 +1,208 @@
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.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Preymesser
8
8
  - Hugh McGowan
9
9
  - Ben Woosley
10
+ - Oleksandr Simonov
11
+ - Steven Daniels
10
12
  autorequire:
11
13
  bindir: bin
12
14
  cert_chain: []
13
- date: 2013-12-23 00:00:00.000000000 Z
15
+ date: 2016-12-31 00:00:00.000000000 Z
14
16
  dependencies:
15
17
  - !ruby/object:Gem::Dependency
16
- name: spreadsheet
18
+ name: nokogiri
17
19
  requirement: !ruby/object:Gem::Requirement
18
20
  requirements:
19
- - - '>'
21
+ - - "~>"
20
22
  - !ruby/object:Gem::Version
21
- version: 0.6.4
23
+ version: '1'
22
24
  type: :runtime
23
25
  prerelease: false
24
26
  version_requirements: !ruby/object:Gem::Requirement
25
27
  requirements:
26
- - - '>'
28
+ - - "~>"
27
29
  - !ruby/object:Gem::Version
28
- version: 0.6.4
30
+ version: '1'
29
31
  - !ruby/object:Gem::Dependency
30
- name: nokogiri
32
+ name: rubyzip
31
33
  requirement: !ruby/object:Gem::Requirement
32
34
  requirements:
33
- - - '>='
35
+ - - "~>"
36
+ - !ruby/object:Gem::Version
37
+ version: '1.1'
38
+ - - "<"
34
39
  - !ruby/object:Gem::Version
35
- version: '0'
40
+ version: 2.0.0
36
41
  type: :runtime
37
42
  prerelease: false
38
43
  version_requirements: !ruby/object:Gem::Requirement
39
44
  requirements:
40
- - - '>='
45
+ - - "~>"
41
46
  - !ruby/object:Gem::Version
42
- version: '0'
47
+ version: '1.1'
48
+ - - "<"
49
+ - !ruby/object:Gem::Version
50
+ version: 2.0.0
43
51
  - !ruby/object:Gem::Dependency
44
- name: rubyzip
52
+ name: rake
45
53
  requirement: !ruby/object:Gem::Requirement
46
54
  requirements:
47
- - - '>='
55
+ - - "~>"
48
56
  - !ruby/object:Gem::Version
49
- version: '0'
50
- type: :runtime
57
+ version: '10.1'
58
+ type: :development
51
59
  prerelease: false
52
60
  version_requirements: !ruby/object:Gem::Requirement
53
61
  requirements:
54
- - - '>='
62
+ - - "~>"
55
63
  - !ruby/object:Gem::Version
56
- version: '0'
64
+ version: '10.1'
57
65
  - !ruby/object:Gem::Dependency
58
- name: google_drive
66
+ name: minitest
59
67
  requirement: !ruby/object:Gem::Requirement
60
68
  requirements:
61
- - - '>='
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '5.4'
72
+ - - ">="
62
73
  - !ruby/object:Gem::Version
63
- version: '0'
74
+ version: 5.4.3
64
75
  type: :development
65
76
  prerelease: false
66
77
  version_requirements: !ruby/object:Gem::Requirement
67
78
  requirements:
68
- - - '>='
79
+ - - "~>"
69
80
  - !ruby/object:Gem::Version
70
- version: '0'
81
+ version: '5.4'
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: 5.4.3
71
85
  - !ruby/object:Gem::Dependency
72
- name: jeweler
86
+ name: rack
73
87
  requirement: !ruby/object:Gem::Requirement
74
88
  requirements:
75
- - - '>='
89
+ - - "~>"
90
+ - !ruby/object:Gem::Version
91
+ version: '1.6'
92
+ - - "<"
76
93
  - !ruby/object:Gem::Version
77
- version: '0'
94
+ version: 2.0.0
78
95
  type: :development
79
96
  prerelease: false
80
97
  version_requirements: !ruby/object:Gem::Requirement
81
98
  requirements:
82
- - - '>='
99
+ - - "~>"
83
100
  - !ruby/object:Gem::Version
84
- version: '0'
101
+ version: '1.6'
102
+ - - "<"
103
+ - !ruby/object:Gem::Version
104
+ version: 2.0.0
85
105
  description: |-
86
106
  Roo can access the contents of various spreadsheet files. It can handle
87
107
  * OpenOffice
88
- * Excel
89
- * Google spreadsheets
90
108
  * Excelx
91
109
  * LibreOffice
92
110
  * CSV
93
- email: ruby.ruby.ruby.roo@gmail.com
111
+ email:
112
+ - ruby.ruby.ruby.roo@gmail.com
113
+ - oleksandr@simonov.me
94
114
  executables: []
95
115
  extensions: []
96
- extra_rdoc_files:
97
- - LICENSE
98
- - README.markdown
116
+ extra_rdoc_files: []
99
117
  files:
100
- - CHANGELOG
118
+ - ".codeclimate.yml"
119
+ - ".github/ISSUE_TEMPLATE"
120
+ - ".gitignore"
121
+ - ".simplecov"
122
+ - ".travis.yml"
123
+ - CHANGELOG.md
101
124
  - Gemfile
102
- - Gemfile.lock
125
+ - Gemfile_ruby2
126
+ - Guardfile
103
127
  - LICENSE
104
- - README.markdown
128
+ - README.md
105
129
  - Rakefile
106
- - VERSION
107
130
  - examples/roo_soap_client.rb
108
131
  - examples/roo_soap_server.rb
109
132
  - examples/write_me.rb
110
133
  - lib/roo.rb
111
134
  - lib/roo/base.rb
135
+ - lib/roo/constants.rb
112
136
  - lib/roo/csv.rb
113
- - lib/roo/excel.rb
114
- - lib/roo/excel2003xml.rb
137
+ - lib/roo/errors.rb
115
138
  - lib/roo/excelx.rb
116
- - lib/roo/google.rb
117
- - lib/roo/openoffice.rb
118
- - lib/roo/roo_rails_helper.rb
139
+ - lib/roo/excelx/cell.rb
140
+ - lib/roo/excelx/cell/base.rb
141
+ - lib/roo/excelx/cell/boolean.rb
142
+ - lib/roo/excelx/cell/date.rb
143
+ - lib/roo/excelx/cell/datetime.rb
144
+ - lib/roo/excelx/cell/empty.rb
145
+ - lib/roo/excelx/cell/number.rb
146
+ - lib/roo/excelx/cell/string.rb
147
+ - lib/roo/excelx/cell/time.rb
148
+ - lib/roo/excelx/comments.rb
149
+ - lib/roo/excelx/coordinate.rb
150
+ - lib/roo/excelx/extractor.rb
151
+ - lib/roo/excelx/format.rb
152
+ - lib/roo/excelx/relationships.rb
153
+ - lib/roo/excelx/shared.rb
154
+ - lib/roo/excelx/shared_strings.rb
155
+ - lib/roo/excelx/sheet.rb
156
+ - lib/roo/excelx/sheet_doc.rb
157
+ - lib/roo/excelx/styles.rb
158
+ - lib/roo/excelx/workbook.rb
159
+ - lib/roo/font.rb
160
+ - lib/roo/formatters/base.rb
161
+ - lib/roo/formatters/csv.rb
162
+ - lib/roo/formatters/matrix.rb
163
+ - lib/roo/formatters/xml.rb
164
+ - lib/roo/formatters/yaml.rb
165
+ - lib/roo/libre_office.rb
166
+ - lib/roo/link.rb
167
+ - lib/roo/open_office.rb
119
168
  - lib/roo/spreadsheet.rb
120
- - lib/roo/worksheet.rb
169
+ - lib/roo/tempdir.rb
170
+ - lib/roo/utils.rb
171
+ - lib/roo/version.rb
121
172
  - roo.gemspec
122
- - scripts/txt2html
123
173
  - spec/fixtures/vcr_cassettes/google_drive.yml
124
174
  - spec/fixtures/vcr_cassettes/google_drive_access_token.yml
125
175
  - spec/fixtures/vcr_cassettes/google_drive_set.yml
176
+ - spec/helpers.rb
126
177
  - spec/lib/roo/base_spec.rb
127
178
  - spec/lib/roo/csv_spec.rb
128
- - spec/lib/roo/excel2003xml_spec.rb
129
- - spec/lib/roo/excel_spec.rb
130
179
  - spec/lib/roo/excelx/format_spec.rb
131
180
  - spec/lib/roo/excelx_spec.rb
132
- - spec/lib/roo/google_spec.rb
133
181
  - spec/lib/roo/libreoffice_spec.rb
134
182
  - spec/lib/roo/openoffice_spec.rb
135
183
  - spec/lib/roo/spreadsheet_spec.rb
184
+ - spec/lib/roo/utils_spec.rb
136
185
  - spec/spec_helper.rb
137
186
  - 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
- - test/test_generic_spreadsheet.rb
187
+ - test/excelx/cell/test_base.rb
188
+ - test/excelx/cell/test_boolean.rb
189
+ - test/excelx/cell/test_date.rb
190
+ - test/excelx/cell/test_datetime.rb
191
+ - test/excelx/cell/test_empty.rb
192
+ - test/excelx/cell/test_number.rb
193
+ - test/excelx/cell/test_string.rb
194
+ - test/excelx/cell/test_time.rb
195
+ - test/formatters/test_csv.rb
196
+ - test/formatters/test_matrix.rb
197
+ - test/formatters/test_xml.rb
198
+ - test/formatters/test_yaml.rb
199
+ - test/roo/test_csv.rb
200
+ - test/roo/test_excelx.rb
201
+ - test/roo/test_libre_office.rb
202
+ - test/roo/test_open_office.rb
249
203
  - test/test_helper.rb
250
204
  - 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
205
+ homepage: http://github.com/roo-rb/roo
257
206
  licenses:
258
207
  - MIT
259
208
  metadata: {}
@@ -263,146 +212,18 @@ require_paths:
263
212
  - lib
264
213
  required_ruby_version: !ruby/object:Gem::Requirement
265
214
  requirements:
266
- - - '>='
215
+ - - ">="
267
216
  - !ruby/object:Gem::Version
268
- version: 1.9.0
217
+ version: '0'
269
218
  required_rubygems_version: !ruby/object:Gem::Requirement
270
219
  requirements:
271
- - - '>='
220
+ - - ">="
272
221
  - !ruby/object:Gem::Version
273
222
  version: '0'
274
223
  requirements: []
275
224
  rubyforge_project:
276
- rubygems_version: 2.0.14
225
+ rubygems_version: 2.6.8
277
226
  signing_key:
278
227
  specification_version: 4
279
228
  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
229
+ test_files: []