write_xlsx 0.0.4 → 0.51.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 (688) hide show
  1. data/Gemfile +4 -2
  2. data/README.rdoc +14 -12
  3. data/Rakefile +8 -8
  4. data/VERSION +1 -1
  5. data/examples/chart_secondary_axis.rb +55 -0
  6. data/examples/date_time.rb +84 -0
  7. data/examples/panes.rb +108 -0
  8. data/examples/regions.rb +49 -0
  9. data/examples/shape1.rb +36 -0
  10. data/examples/shape2.rb +53 -0
  11. data/examples/shape3.rb +32 -0
  12. data/examples/shape4.rb +55 -0
  13. data/examples/shape5.rb +48 -0
  14. data/examples/shape6.rb +48 -0
  15. data/examples/shape7.rb +74 -0
  16. data/examples/shape8.rb +73 -0
  17. data/examples/shape_all.rb +241 -0
  18. data/examples/stats.rb +69 -0
  19. data/examples/stats_ext.rb +77 -0
  20. data/examples/stocks.rb +73 -0
  21. data/examples/tables.rb +360 -0
  22. data/lib/write_xlsx.rb +25 -1
  23. data/lib/write_xlsx/chart.rb +656 -260
  24. data/lib/write_xlsx/chart/area.rb +41 -7
  25. data/lib/write_xlsx/chart/bar.rb +16 -17
  26. data/lib/write_xlsx/chart/column.rb +5 -15
  27. data/lib/write_xlsx/chart/line.rb +15 -6
  28. data/lib/write_xlsx/chart/pie.rb +7 -21
  29. data/lib/write_xlsx/chart/scatter.rb +90 -20
  30. data/lib/write_xlsx/chart/stock.rb +24 -43
  31. data/lib/write_xlsx/chartsheet.rb +29 -11
  32. data/lib/write_xlsx/drawing.rb +354 -35
  33. data/lib/write_xlsx/format.rb +72 -21
  34. data/lib/write_xlsx/package/app.rb +2 -5
  35. data/lib/write_xlsx/package/comments.rb +5 -1
  36. data/lib/write_xlsx/package/content_types.rb +10 -0
  37. data/lib/write_xlsx/package/packager.rb +41 -7
  38. data/lib/write_xlsx/package/relationships.rb +1 -1
  39. data/lib/write_xlsx/package/shared_strings.rb +36 -8
  40. data/lib/write_xlsx/package/styles.rb +12 -9
  41. data/lib/write_xlsx/package/table.rb +194 -0
  42. data/lib/write_xlsx/package/vml.rb +26 -27
  43. data/lib/write_xlsx/package/xml_writer_simple.rb +25 -4
  44. data/lib/write_xlsx/shape.rb +172 -0
  45. data/lib/write_xlsx/utility.rb +20 -0
  46. data/lib/write_xlsx/workbook.rb +499 -141
  47. data/lib/write_xlsx/worksheet.rb +1162 -153
  48. data/test/chart/test_add_series.rb +43 -4
  49. data/test/chart/test_write_d_lbls.rb +274 -0
  50. data/test/chart/test_write_major_gridlines.rb +1 -1
  51. data/test/chartsheet/test_chartsheet01.rb +31 -0
  52. data/test/drawing/test_drawing_shape_01.rb +68 -0
  53. data/test/drawing/test_drawing_shape_02.rb +73 -0
  54. data/test/drawing/test_drawing_shape_03.rb +38 -0
  55. data/test/drawing/test_drawing_shape_04.rb +121 -0
  56. data/test/drawing/test_drawing_shape_05.rb +45 -0
  57. data/test/drawing/test_drawing_shape_06.rb +42 -0
  58. data/test/drawing/test_drawing_shape_07.rb +47 -0
  59. data/test/drawing/test_write_a_graphic_frame_locks.rb +18 -0
  60. data/test/drawing/test_write_c_chart.rb +18 -0
  61. data/test/drawing/test_write_c_nv_graphic_frame_pr.rb +28 -0
  62. data/test/drawing/test_write_c_nv_pr.rb +18 -0
  63. data/test/drawing/test_write_col.rb +18 -0
  64. data/test/drawing/test_write_col_off.rb +18 -0
  65. data/test/drawing/test_write_ext.rb +18 -0
  66. data/test/drawing/test_write_pos.rb +18 -0
  67. data/test/drawing/test_write_row.rb +18 -0
  68. data/test/drawing/test_write_row_off.rb +18 -0
  69. data/test/drawing/test_write_xfrm_extension.rb +18 -0
  70. data/test/drawing/test_write_xfrm_offset.rb +18 -0
  71. data/test/helper.rb +93 -50
  72. data/test/package/shared_strings/test_write_si.rb +10 -1
  73. data/test/package/table/test_table01.rb +42 -0
  74. data/test/package/table/test_table02.rb +44 -0
  75. data/test/package/table/test_table03.rb +48 -0
  76. data/test/package/table/test_table04.rb +46 -0
  77. data/test/package/table/test_table05.rb +46 -0
  78. data/test/package/table/test_table06.rb +52 -0
  79. data/test/package/table/test_table07.rb +47 -0
  80. data/test/package/table/test_table08.rb +53 -0
  81. data/test/package/table/test_table09.rb +65 -0
  82. data/test/package/table/test_table10.rb +45 -0
  83. data/test/package/table/test_table11.rb +60 -0
  84. data/test/package/table/test_table12.rb +60 -0
  85. data/test/package/table/test_write_auto_filter.rb +16 -0
  86. data/test/package/table/test_write_table_column.rb +15 -0
  87. data/test/package/table/test_write_table_style_info.rb +25 -0
  88. data/test/package/table/test_write_xml_declaration.rb +15 -0
  89. data/test/perl_output/a_simple.xlsx +0 -0
  90. data/test/perl_output/array_formula.xlsx +0 -0
  91. data/test/perl_output/chart_secondary_axis.xlsx +0 -0
  92. data/test/perl_output/data_validate.xlsx +0 -0
  93. data/test/perl_output/date_time.xlsx +0 -0
  94. data/test/perl_output/demo.xlsx +0 -0
  95. data/test/perl_output/formats.xlsx +0 -0
  96. data/test/perl_output/headers.xlsx +0 -0
  97. data/test/perl_output/outline_collapsed.xlsx +0 -0
  98. data/test/perl_output/panes.xlsx +0 -0
  99. data/test/perl_output/regions.xlsx +0 -0
  100. data/test/perl_output/shape1.xlsx +0 -0
  101. data/test/perl_output/shape2.xlsx +0 -0
  102. data/test/perl_output/shape3.xlsx +0 -0
  103. data/test/perl_output/shape4.xlsx +0 -0
  104. data/test/perl_output/shape5.xlsx +0 -0
  105. data/test/perl_output/shape6.xlsx +0 -0
  106. data/test/perl_output/shape7.xlsx +0 -0
  107. data/test/perl_output/shape8.xlsx +0 -0
  108. data/test/perl_output/shape_all.xlsx +0 -0
  109. data/test/perl_output/stats.xlsx +0 -0
  110. data/test/perl_output/stats_ext.xlsx +0 -0
  111. data/test/perl_output/stocks.xlsx +0 -0
  112. data/test/perl_output/tables.xlsx +0 -0
  113. data/test/regression/images/blue.jpg +0 -0
  114. data/test/regression/images/blue.png +0 -0
  115. data/test/regression/images/grey.jpg +0 -0
  116. data/test/regression/images/grey.png +0 -0
  117. data/test/regression/images/red.bmp +0 -0
  118. data/test/regression/images/red.jpg +0 -0
  119. data/test/regression/images/red.png +0 -0
  120. data/test/regression/images/yellow.jpg +0 -0
  121. data/test/regression/images/yellow.png +0 -0
  122. data/test/regression/test_array_formula01.rb +31 -0
  123. data/test/regression/test_array_formula02.rb +32 -0
  124. data/test/regression/test_autofilter00.rb +84 -0
  125. data/test/regression/test_autofilter01.rb +86 -0
  126. data/test/regression/test_autofilter02.rb +104 -0
  127. data/test/regression/test_autofilter03.rb +104 -0
  128. data/test/regression/test_autofilter04.rb +107 -0
  129. data/test/regression/test_autofilter05.rb +108 -0
  130. data/test/regression/test_autofilter06.rb +108 -0
  131. data/test/regression/test_autofilter07.rb +107 -0
  132. data/test/regression/test_chart_area01.rb +45 -0
  133. data/test/regression/test_chart_area02.rb +45 -0
  134. data/test/regression/test_chart_area03.rb +45 -0
  135. data/test/regression/test_chart_axis01.rb +46 -0
  136. data/test/regression/test_chart_axis02.rb +46 -0
  137. data/test/regression/test_chart_axis03.rb +68 -0
  138. data/test/regression/test_chart_axis04.rb +53 -0
  139. data/test/regression/test_chart_axis05.rb +48 -0
  140. data/test/regression/test_chart_axis06.rb +50 -0
  141. data/test/regression/test_chart_axis07.rb +54 -0
  142. data/test/regression/test_chart_axis08.rb +53 -0
  143. data/test/regression/test_chart_axis09.rb +47 -0
  144. data/test/regression/test_chart_axis10.rb +53 -0
  145. data/test/regression/test_chart_axis11.rb +47 -0
  146. data/test/regression/test_chart_axis12.rb +47 -0
  147. data/test/regression/test_chart_axis13.rb +53 -0
  148. data/test/regression/test_chart_axis14.rb +67 -0
  149. data/test/regression/test_chart_axis15.rb +48 -0
  150. data/test/regression/test_chart_axis16.rb +70 -0
  151. data/test/regression/test_chart_axis17.rb +46 -0
  152. data/test/regression/test_chart_axis18.rb +44 -0
  153. data/test/regression/test_chart_axis19.rb +46 -0
  154. data/test/regression/test_chart_axis20.rb +46 -0
  155. data/test/regression/test_chart_axis21.rb +50 -0
  156. data/test/regression/test_chart_bar01.rb +44 -0
  157. data/test/regression/test_chart_bar02.rb +55 -0
  158. data/test/regression/test_chart_bar03.rb +67 -0
  159. data/test/regression/test_chart_bar04.rb +70 -0
  160. data/test/regression/test_chart_bar05.rb +43 -0
  161. data/test/regression/test_chart_bar06.rb +50 -0
  162. data/test/regression/test_chart_bar07.rb +54 -0
  163. data/test/regression/test_chart_bar08.rb +44 -0
  164. data/test/regression/test_chart_bar09.rb +43 -0
  165. data/test/regression/test_chart_bar10.rb +47 -0
  166. data/test/regression/test_chart_bar11.rb +71 -0
  167. data/test/regression/test_chart_bar12.rb +43 -0
  168. data/test/regression/test_chart_bar13.rb +53 -0
  169. data/test/regression/test_chart_bar14.rb +63 -0
  170. data/test/regression/test_chart_bar15.rb +53 -0
  171. data/test/regression/test_chart_bar16.rb +51 -0
  172. data/test/regression/test_chart_bar17.rb +47 -0
  173. data/test/regression/test_chart_bar18.rb +58 -0
  174. data/test/regression/test_chart_bar19.rb +50 -0
  175. data/test/regression/test_chart_bar20.rb +47 -0
  176. data/test/regression/test_chart_bar21.rb +53 -0
  177. data/test/regression/test_chart_bar22.rb +68 -0
  178. data/test/regression/test_chart_bar23.rb +62 -0
  179. data/test/regression/test_chart_bar24.rb +46 -0
  180. data/test/regression/test_chart_blank01.rb +41 -0
  181. data/test/regression/test_chart_blank02.rb +41 -0
  182. data/test/regression/test_chart_blank03.rb +41 -0
  183. data/test/regression/test_chart_blank04.rb +41 -0
  184. data/test/regression/test_chart_blank05.rb +46 -0
  185. data/test/regression/test_chart_blank06.rb +41 -0
  186. data/test/regression/test_chart_column01.rb +43 -0
  187. data/test/regression/test_chart_column02.rb +45 -0
  188. data/test/regression/test_chart_column03.rb +45 -0
  189. data/test/regression/test_chart_column04.rb +45 -0
  190. data/test/regression/test_chart_column05.rb +39 -0
  191. data/test/regression/test_chart_column06.rb +46 -0
  192. data/test/regression/test_chart_crossing01.rb +50 -0
  193. data/test/regression/test_chart_crossing02.rb +48 -0
  194. data/test/regression/test_chart_crossing03.rb +53 -0
  195. data/test/regression/test_chart_crossing04.rb +53 -0
  196. data/test/regression/test_chart_format01.rb +44 -0
  197. data/test/regression/test_chart_format02.rb +45 -0
  198. data/test/regression/test_chart_format03.rb +46 -0
  199. data/test/regression/test_chart_format04.rb +45 -0
  200. data/test/regression/test_chart_format05.rb +45 -0
  201. data/test/regression/test_chart_format06.rb +52 -0
  202. data/test/regression/test_chart_format07.rb +57 -0
  203. data/test/regression/test_chart_format08.rb +52 -0
  204. data/test/regression/test_chart_format09.rb +56 -0
  205. data/test/regression/test_chart_format10.rb +59 -0
  206. data/test/regression/test_chart_format11.rb +63 -0
  207. data/test/regression/test_chart_format12.rb +60 -0
  208. data/test/regression/test_chart_format13.rb +52 -0
  209. data/test/regression/test_chart_format14.rb +56 -0
  210. data/test/regression/test_chart_format15.rb +54 -0
  211. data/test/regression/test_chart_format16.rb +57 -0
  212. data/test/regression/test_chart_format17.rb +40 -0
  213. data/test/regression/test_chart_format18.rb +44 -0
  214. data/test/regression/test_chart_line01.rb +39 -0
  215. data/test/regression/test_chart_line02.rb +45 -0
  216. data/test/regression/test_chart_name01.rb +46 -0
  217. data/test/regression/test_chart_name02.rb +58 -0
  218. data/test/regression/test_chart_name03.rb +58 -0
  219. data/test/regression/test_chart_pie01.rb +36 -0
  220. data/test/regression/test_chart_scatter01.rb +45 -0
  221. data/test/regression/test_chart_scatter02.rb +49 -0
  222. data/test/regression/test_chart_scatter03.rb +49 -0
  223. data/test/regression/test_chart_scatter04.rb +49 -0
  224. data/test/regression/test_chart_scatter05.rb +49 -0
  225. data/test/regression/test_chart_scatter06.rb +51 -0
  226. data/test/regression/test_chart_scatter07.rb +60 -0
  227. data/test/regression/test_chart_sparse01.rb +54 -0
  228. data/test/regression/test_chart_stock01.rb +72 -0
  229. data/test/regression/test_chart_stock02.rb +73 -0
  230. data/test/regression/test_chart_str01.rb +48 -0
  231. data/test/regression/test_chart_str02.rb +52 -0
  232. data/test/regression/test_chartsheet01.rb +46 -0
  233. data/test/regression/test_chartsheet02.rb +50 -0
  234. data/test/regression/test_chartsheet03.rb +48 -0
  235. data/test/regression/test_chartsheet04.rb +48 -0
  236. data/test/regression/test_chartsheet05.rb +48 -0
  237. data/test/regression/test_chartsheet06.rb +48 -0
  238. data/test/regression/test_chartsheet07.rb +57 -0
  239. data/test/regression/test_chartsheet08.rb +61 -0
  240. data/test/regression/test_chartsheet09.rb +52 -0
  241. data/test/regression/test_comment01.rb +27 -0
  242. data/test/regression/test_comment02.rb +28 -0
  243. data/test/regression/test_comment03.rb +32 -0
  244. data/test/regression/test_comment04.rb +37 -0
  245. data/test/regression/test_comment06.rb +34 -0
  246. data/test/regression/test_comment07.rb +36 -0
  247. data/test/regression/test_comment08.rb +36 -0
  248. data/test/regression/test_comment09.rb +32 -0
  249. data/test/regression/test_comment10.rb +31 -0
  250. data/test/regression/test_cond_format01.rb +46 -0
  251. data/test/regression/test_cond_format02.rb +41 -0
  252. data/test/regression/test_cond_format03.rb +52 -0
  253. data/test/regression/test_cond_format04.rb +51 -0
  254. data/test/regression/test_cond_format05.rb +41 -0
  255. data/test/regression/test_cond_format06.rb +45 -0
  256. data/test/regression/test_cond_format07.rb +62 -0
  257. data/test/regression/test_cond_format08.rb +46 -0
  258. data/test/regression/test_cond_format10.rb +43 -0
  259. data/test/regression/test_cond_format11.rb +47 -0
  260. data/test/regression/test_cond_format12.rb +47 -0
  261. data/test/regression/test_custom_colors01.rb +33 -0
  262. data/test/regression/test_date_1904_01.rb +36 -0
  263. data/test/regression/test_date_1904_02.rb +39 -0
  264. data/test/regression/test_defined_name01.rb +47 -0
  265. data/test/regression/test_escapes01.rb +37 -0
  266. data/test/regression/test_escapes02.rb +33 -0
  267. data/test/regression/test_escapes03.rb +34 -0
  268. data/test/regression/test_fit_to_pages01.rb +37 -0
  269. data/test/regression/test_fit_to_pages02.rb +37 -0
  270. data/test/regression/test_fit_to_pages03.rb +37 -0
  271. data/test/regression/test_fit_to_pages04.rb +37 -0
  272. data/test/regression/test_fit_to_pages05.rb +37 -0
  273. data/test/regression/test_format01.rb +35 -0
  274. data/test/regression/test_format02.rb +47 -0
  275. data/test/regression/test_format03.rb +31 -0
  276. data/test/regression/test_format04.rb +41 -0
  277. data/test/regression/test_gridlines01.rb +36 -0
  278. data/test/regression/test_hyperlink01.rb +23 -0
  279. data/test/regression/test_hyperlink02.rb +27 -0
  280. data/test/regression/test_hyperlink03.rb +32 -0
  281. data/test/regression/test_hyperlink04.rb +31 -0
  282. data/test/regression/test_hyperlink05.rb +26 -0
  283. data/test/regression/test_hyperlink06.rb +25 -0
  284. data/test/regression/test_hyperlink07.rb +24 -0
  285. data/test/regression/test_hyperlink08.rb +24 -0
  286. data/test/regression/test_hyperlink09.rb +25 -0
  287. data/test/regression/test_hyperlink10.rb +24 -0
  288. data/test/regression/test_hyperlink11.rb +24 -0
  289. data/test/regression/test_hyperlink12.rb +25 -0
  290. data/test/regression/test_hyperlink13.rb +24 -0
  291. data/test/regression/test_hyperlink14.rb +24 -0
  292. data/test/regression/test_hyperlink15.rb +26 -0
  293. data/test/regression/test_hyperlink16.rb +26 -0
  294. data/test/regression/test_hyperlink17.rb +27 -0
  295. data/test/regression/test_hyperlink18.rb +27 -0
  296. data/test/regression/test_image01.rb +23 -0
  297. data/test/regression/test_image02.rb +23 -0
  298. data/test/regression/test_image03.rb +23 -0
  299. data/test/regression/test_image04.rb +23 -0
  300. data/test/regression/test_image05.rb +26 -0
  301. data/test/regression/test_image06.rb +36 -0
  302. data/test/regression/test_image07.rb +25 -0
  303. data/test/regression/test_outline01.rb +86 -0
  304. data/test/regression/test_outline02.rb +89 -0
  305. data/test/regression/test_outline03.rb +59 -0
  306. data/test/regression/test_outline04.rb +55 -0
  307. data/test/regression/test_outline05.rb +90 -0
  308. data/test/regression/test_outline06.rb +89 -0
  309. data/test/regression/test_page_breaks01.rb +36 -0
  310. data/test/regression/test_page_breaks02.rb +36 -0
  311. data/test/regression/test_page_breaks03.rb +36 -0
  312. data/test/regression/test_page_breaks04.rb +36 -0
  313. data/test/regression/test_page_breaks05.rb +36 -0
  314. data/test/regression/test_page_breaks06.rb +37 -0
  315. data/test/regression/test_page_view01.rb +36 -0
  316. data/test/regression/test_panes01.rb +66 -0
  317. data/test/regression/test_print_across01.rb +37 -0
  318. data/test/regression/test_print_area01.rb +36 -0
  319. data/test/regression/test_print_area02.rb +36 -0
  320. data/test/regression/test_print_area03.rb +36 -0
  321. data/test/regression/test_print_area04.rb +36 -0
  322. data/test/regression/test_print_area05.rb +36 -0
  323. data/test/regression/test_print_area06.rb +36 -0
  324. data/test/regression/test_print_area07.rb +37 -0
  325. data/test/regression/test_print_options01.rb +36 -0
  326. data/test/regression/test_print_options02.rb +36 -0
  327. data/test/regression/test_print_options03.rb +36 -0
  328. data/test/regression/test_print_options04.rb +36 -0
  329. data/test/regression/test_print_options05.rb +39 -0
  330. data/test/regression/test_print_options06.rb +37 -0
  331. data/test/regression/test_print_scale01.rb +37 -0
  332. data/test/regression/test_print_scale02.rb +37 -0
  333. data/test/regression/test_properties01.rb +40 -0
  334. data/test/regression/test_repeat01.rb +36 -0
  335. data/test/regression/test_repeat02.rb +36 -0
  336. data/test/regression/test_repeat03.rb +37 -0
  337. data/test/regression/test_repeat04.rb +36 -0
  338. data/test/regression/test_repeat05.rb +43 -0
  339. data/test/regression/test_rich_string01.rb +28 -0
  340. data/test/regression/test_rich_string02.rb +28 -0
  341. data/test/regression/test_rich_string03.rb +28 -0
  342. data/test/regression/test_rich_string04.rb +28 -0
  343. data/test/regression/test_rich_string05.rb +30 -0
  344. data/test/regression/test_rich_string06.rb +27 -0
  345. data/test/regression/test_rich_string07.rb +33 -0
  346. data/test/regression/test_rich_string08.rb +29 -0
  347. data/test/regression/test_rich_string09.rb +31 -0
  348. data/test/regression/test_rich_string10.rb +30 -0
  349. data/test/regression/test_rich_string11.rb +29 -0
  350. data/test/regression/test_row_col_format01.rb +24 -0
  351. data/test/regression/test_row_col_format02.rb +25 -0
  352. data/test/regression/test_row_col_format03.rb +24 -0
  353. data/test/regression/test_row_col_format04.rb +25 -0
  354. data/test/regression/test_row_col_format05.rb +26 -0
  355. data/test/regression/test_row_col_format06.rb +29 -0
  356. data/test/regression/test_row_col_format07.rb +24 -0
  357. data/test/regression/test_row_col_format08.rb +34 -0
  358. data/test/regression/test_row_col_format09.rb +33 -0
  359. data/test/regression/test_row_col_format10.rb +24 -0
  360. data/test/regression/test_row_col_format11.rb +23 -0
  361. data/test/regression/test_row_col_format12.rb +23 -0
  362. data/test/regression/test_row_col_format13.rb +28 -0
  363. data/test/regression/test_row_col_format14.rb +28 -0
  364. data/test/regression/test_shape_connect01.rb +46 -0
  365. data/test/regression/test_shape_connect02.rb +42 -0
  366. data/test/regression/test_shape_connect03.rb +78 -0
  367. data/test/regression/test_shape_connect04.rb +75 -0
  368. data/test/regression/test_shape_scale01.rb +47 -0
  369. data/test/regression/test_shape_stencil01.rb +44 -0
  370. data/test/regression/test_shared_strings01.rb +34 -0
  371. data/test/regression/test_shared_strings02.rb +47 -0
  372. data/test/regression/test_simple01.rb +24 -0
  373. data/test/regression/test_simple02.rb +32 -0
  374. data/test/regression/test_tab_color01.rb +29 -0
  375. data/test/regression/test_table01.rb +27 -0
  376. data/test/regression/test_table02.rb +37 -0
  377. data/test/regression/test_table03.rb +30 -0
  378. data/test/regression/test_table04.rb +34 -0
  379. data/test/regression/test_table05.rb +38 -0
  380. data/test/regression/test_table06.rb +41 -0
  381. data/test/regression/test_table07.rb +29 -0
  382. data/test/regression/test_table08.rb +48 -0
  383. data/test/regression/test_table09.rb +65 -0
  384. data/test/regression/test_table10.rb +68 -0
  385. data/test/regression/test_table11.rb +37 -0
  386. data/test/regression/test_table12.rb +36 -0
  387. data/test/regression/test_table13.rb +51 -0
  388. data/test/regression/test_table14.rb +51 -0
  389. data/test/regression/xlsx_files/array_formula01.xlsx +0 -0
  390. data/test/regression/xlsx_files/array_formula02.xlsx +0 -0
  391. data/test/regression/xlsx_files/autofilter00.xlsx +0 -0
  392. data/test/regression/xlsx_files/autofilter01.xlsx +0 -0
  393. data/test/regression/xlsx_files/autofilter02.xlsx +0 -0
  394. data/test/regression/xlsx_files/autofilter03.xlsx +0 -0
  395. data/test/regression/xlsx_files/autofilter04.xlsx +0 -0
  396. data/test/regression/xlsx_files/autofilter05.xlsx +0 -0
  397. data/test/regression/xlsx_files/autofilter06.xlsx +0 -0
  398. data/test/regression/xlsx_files/autofilter07.xlsx +0 -0
  399. data/test/regression/xlsx_files/chart_area01.xlsx +0 -0
  400. data/test/regression/xlsx_files/chart_area02.xlsx +0 -0
  401. data/test/regression/xlsx_files/chart_area03.xlsx +0 -0
  402. data/test/regression/xlsx_files/chart_area04.xlsx +0 -0
  403. data/test/regression/xlsx_files/chart_axis01.xlsx +0 -0
  404. data/test/regression/xlsx_files/chart_axis02.xlsx +0 -0
  405. data/test/regression/xlsx_files/chart_axis03.xlsx +0 -0
  406. data/test/regression/xlsx_files/chart_axis04.xlsx +0 -0
  407. data/test/regression/xlsx_files/chart_axis05.xlsx +0 -0
  408. data/test/regression/xlsx_files/chart_axis06.xlsx +0 -0
  409. data/test/regression/xlsx_files/chart_axis07.xlsx +0 -0
  410. data/test/regression/xlsx_files/chart_axis08.xlsx +0 -0
  411. data/test/regression/xlsx_files/chart_axis09.xlsx +0 -0
  412. data/test/regression/xlsx_files/chart_axis10.xlsx +0 -0
  413. data/test/regression/xlsx_files/chart_axis11.xlsx +0 -0
  414. data/test/regression/xlsx_files/chart_axis12.xlsx +0 -0
  415. data/test/regression/xlsx_files/chart_axis13.xlsx +0 -0
  416. data/test/regression/xlsx_files/chart_axis14.xlsx +0 -0
  417. data/test/regression/xlsx_files/chart_axis15.xlsx +0 -0
  418. data/test/regression/xlsx_files/chart_axis16.xlsx +0 -0
  419. data/test/regression/xlsx_files/chart_axis17.xlsx +0 -0
  420. data/test/regression/xlsx_files/chart_axis18.xlsx +0 -0
  421. data/test/regression/xlsx_files/chart_axis19.xlsx +0 -0
  422. data/test/regression/xlsx_files/chart_axis20.xlsx +0 -0
  423. data/test/regression/xlsx_files/chart_axis21.xlsx +0 -0
  424. data/test/regression/xlsx_files/chart_bar01.xlsx +0 -0
  425. data/test/regression/xlsx_files/chart_bar02.xlsx +0 -0
  426. data/test/regression/xlsx_files/chart_bar03.xlsx +0 -0
  427. data/test/regression/xlsx_files/chart_bar04.xlsx +0 -0
  428. data/test/regression/xlsx_files/chart_bar05.xlsx +0 -0
  429. data/test/regression/xlsx_files/chart_bar06.xlsx +0 -0
  430. data/test/regression/xlsx_files/chart_bar07.xlsx +0 -0
  431. data/test/regression/xlsx_files/chart_bar08.xlsx +0 -0
  432. data/test/regression/xlsx_files/chart_bar09.xlsx +0 -0
  433. data/test/regression/xlsx_files/chart_bar10.xlsx +0 -0
  434. data/test/regression/xlsx_files/chart_bar11.xlsx +0 -0
  435. data/test/regression/xlsx_files/chart_bar12.xlsx +0 -0
  436. data/test/regression/xlsx_files/chart_bar13.xlsx +0 -0
  437. data/test/regression/xlsx_files/chart_bar14.xlsx +0 -0
  438. data/test/regression/xlsx_files/chart_bar15.xlsx +0 -0
  439. data/test/regression/xlsx_files/chart_bar16.xlsx +0 -0
  440. data/test/regression/xlsx_files/chart_bar17.xlsx +0 -0
  441. data/test/regression/xlsx_files/chart_bar18.xlsx +0 -0
  442. data/test/regression/xlsx_files/chart_bar19.xlsx +0 -0
  443. data/test/regression/xlsx_files/chart_bar20.xlsx +0 -0
  444. data/test/regression/xlsx_files/chart_bar21.xlsx +0 -0
  445. data/test/regression/xlsx_files/chart_bar22.xlsx +0 -0
  446. data/test/regression/xlsx_files/chart_bar23.xlsx +0 -0
  447. data/test/regression/xlsx_files/chart_bar24.xlsx +0 -0
  448. data/test/regression/xlsx_files/chart_blank01.xlsx +0 -0
  449. data/test/regression/xlsx_files/chart_blank02.xlsx +0 -0
  450. data/test/regression/xlsx_files/chart_blank03.xlsx +0 -0
  451. data/test/regression/xlsx_files/chart_blank04.xlsx +0 -0
  452. data/test/regression/xlsx_files/chart_blank05.xlsx +0 -0
  453. data/test/regression/xlsx_files/chart_blank06.xlsx +0 -0
  454. data/test/regression/xlsx_files/chart_column01.xlsx +0 -0
  455. data/test/regression/xlsx_files/chart_column02.xlsx +0 -0
  456. data/test/regression/xlsx_files/chart_column03.xlsx +0 -0
  457. data/test/regression/xlsx_files/chart_column04.xlsx +0 -0
  458. data/test/regression/xlsx_files/chart_column05.xlsx +0 -0
  459. data/test/regression/xlsx_files/chart_column06.xlsx +0 -0
  460. data/test/regression/xlsx_files/chart_crossing01.xlsx +0 -0
  461. data/test/regression/xlsx_files/chart_crossing02.xlsx +0 -0
  462. data/test/regression/xlsx_files/chart_crossing03.xlsx +0 -0
  463. data/test/regression/xlsx_files/chart_crossing04.xlsx +0 -0
  464. data/test/regression/xlsx_files/chart_format01.xlsx +0 -0
  465. data/test/regression/xlsx_files/chart_format02.xlsx +0 -0
  466. data/test/regression/xlsx_files/chart_format03.xlsx +0 -0
  467. data/test/regression/xlsx_files/chart_format04.xlsx +0 -0
  468. data/test/regression/xlsx_files/chart_format05.xlsx +0 -0
  469. data/test/regression/xlsx_files/chart_format06.xlsx +0 -0
  470. data/test/regression/xlsx_files/chart_format07.xlsx +0 -0
  471. data/test/regression/xlsx_files/chart_format08.xlsx +0 -0
  472. data/test/regression/xlsx_files/chart_format09.xlsx +0 -0
  473. data/test/regression/xlsx_files/chart_format10.xlsx +0 -0
  474. data/test/regression/xlsx_files/chart_format11.xlsx +0 -0
  475. data/test/regression/xlsx_files/chart_format12.xlsx +0 -0
  476. data/test/regression/xlsx_files/chart_format13.xlsx +0 -0
  477. data/test/regression/xlsx_files/chart_format14.xlsx +0 -0
  478. data/test/regression/xlsx_files/chart_format15.xlsx +0 -0
  479. data/test/regression/xlsx_files/chart_format16.xlsx +0 -0
  480. data/test/regression/xlsx_files/chart_format17.xlsx +0 -0
  481. data/test/regression/xlsx_files/chart_format18.xlsx +0 -0
  482. data/test/regression/xlsx_files/chart_line01.xlsx +0 -0
  483. data/test/regression/xlsx_files/chart_line02.xlsx +0 -0
  484. data/test/regression/xlsx_files/chart_name01.xlsx +0 -0
  485. data/test/regression/xlsx_files/chart_name02.xlsx +0 -0
  486. data/test/regression/xlsx_files/chart_name03.xlsx +0 -0
  487. data/test/regression/xlsx_files/chart_pie01.xlsx +0 -0
  488. data/test/regression/xlsx_files/chart_scatter01.xlsx +0 -0
  489. data/test/regression/xlsx_files/chart_scatter02.xlsx +0 -0
  490. data/test/regression/xlsx_files/chart_scatter03.xlsx +0 -0
  491. data/test/regression/xlsx_files/chart_scatter04.xlsx +0 -0
  492. data/test/regression/xlsx_files/chart_scatter05.xlsx +0 -0
  493. data/test/regression/xlsx_files/chart_scatter06.xlsx +0 -0
  494. data/test/regression/xlsx_files/chart_scatter07.xlsx +0 -0
  495. data/test/regression/xlsx_files/chart_sparse01.xlsx +0 -0
  496. data/test/regression/xlsx_files/chart_stock01.xlsx +0 -0
  497. data/test/regression/xlsx_files/chart_stock02.xlsx +0 -0
  498. data/test/regression/xlsx_files/chart_str01.xlsx +0 -0
  499. data/test/regression/xlsx_files/chart_str02.xlsx +0 -0
  500. data/test/regression/xlsx_files/chartsheet01.xlsx +0 -0
  501. data/test/regression/xlsx_files/chartsheet02.xlsx +0 -0
  502. data/test/regression/xlsx_files/chartsheet03.xlsx +0 -0
  503. data/test/regression/xlsx_files/chartsheet04.xlsx +0 -0
  504. data/test/regression/xlsx_files/chartsheet05.xlsx +0 -0
  505. data/test/regression/xlsx_files/chartsheet06.xlsx +0 -0
  506. data/test/regression/xlsx_files/chartsheet07.xlsx +0 -0
  507. data/test/regression/xlsx_files/chartsheet08.xlsx +0 -0
  508. data/test/regression/xlsx_files/chartsheet09.xlsx +0 -0
  509. data/test/regression/xlsx_files/comment01.xlsx +0 -0
  510. data/test/regression/xlsx_files/comment02.xlsx +0 -0
  511. data/test/regression/xlsx_files/comment03.xlsx +0 -0
  512. data/test/regression/xlsx_files/comment04.xlsx +0 -0
  513. data/test/regression/xlsx_files/comment05.xlsx +0 -0
  514. data/test/regression/xlsx_files/comment06.xlsx +0 -0
  515. data/test/regression/xlsx_files/comment07.xlsx +0 -0
  516. data/test/regression/xlsx_files/comment08.xlsx +0 -0
  517. data/test/regression/xlsx_files/comment09.xlsx +0 -0
  518. data/test/regression/xlsx_files/comment10.xlsx +0 -0
  519. data/test/regression/xlsx_files/cond_format01.xlsx +0 -0
  520. data/test/regression/xlsx_files/cond_format02.xlsx +0 -0
  521. data/test/regression/xlsx_files/cond_format03.xlsx +0 -0
  522. data/test/regression/xlsx_files/cond_format04.xlsx +0 -0
  523. data/test/regression/xlsx_files/cond_format05.xlsx +0 -0
  524. data/test/regression/xlsx_files/cond_format06.xlsx +0 -0
  525. data/test/regression/xlsx_files/cond_format07.xlsx +0 -0
  526. data/test/regression/xlsx_files/cond_format08.xlsx +0 -0
  527. data/test/regression/xlsx_files/cond_format10.xlsx +0 -0
  528. data/test/regression/xlsx_files/cond_format11.xlsx +0 -0
  529. data/test/regression/xlsx_files/cond_format12.xlsx +0 -0
  530. data/test/regression/xlsx_files/custom_colors01.xlsx +0 -0
  531. data/test/regression/xlsx_files/date_1904_01.xlsx +0 -0
  532. data/test/regression/xlsx_files/date_1904_02.xlsx +0 -0
  533. data/test/regression/xlsx_files/defined_name01.xlsx +0 -0
  534. data/test/regression/xlsx_files/escapes01.xlsx +0 -0
  535. data/test/regression/xlsx_files/escapes02.xlsx +0 -0
  536. data/test/regression/xlsx_files/escapes03.xlsx +0 -0
  537. data/test/regression/xlsx_files/filehandle01.xlsx +0 -0
  538. data/test/regression/xlsx_files/fit_to_pages01.xlsx +0 -0
  539. data/test/regression/xlsx_files/fit_to_pages02.xlsx +0 -0
  540. data/test/regression/xlsx_files/fit_to_pages03.xlsx +0 -0
  541. data/test/regression/xlsx_files/fit_to_pages04.xlsx +0 -0
  542. data/test/regression/xlsx_files/fit_to_pages05.xlsx +0 -0
  543. data/test/regression/xlsx_files/format01.xlsx +0 -0
  544. data/test/regression/xlsx_files/format02.xlsx +0 -0
  545. data/test/regression/xlsx_files/format03.xlsx +0 -0
  546. data/test/regression/xlsx_files/format04.xlsx +0 -0
  547. data/test/regression/xlsx_files/gridlines01.xlsx +0 -0
  548. data/test/regression/xlsx_files/hyperlink01.xlsx +0 -0
  549. data/test/regression/xlsx_files/hyperlink02.xlsx +0 -0
  550. data/test/regression/xlsx_files/hyperlink03.xlsx +0 -0
  551. data/test/regression/xlsx_files/hyperlink04.xlsx +0 -0
  552. data/test/regression/xlsx_files/hyperlink05.xlsx +0 -0
  553. data/test/regression/xlsx_files/hyperlink06.xlsx +0 -0
  554. data/test/regression/xlsx_files/hyperlink07.xlsx +0 -0
  555. data/test/regression/xlsx_files/hyperlink08.xlsx +0 -0
  556. data/test/regression/xlsx_files/hyperlink09.xlsx +0 -0
  557. data/test/regression/xlsx_files/hyperlink10.xlsx +0 -0
  558. data/test/regression/xlsx_files/hyperlink11.xlsx +0 -0
  559. data/test/regression/xlsx_files/hyperlink12.xlsx +0 -0
  560. data/test/regression/xlsx_files/hyperlink13.xlsx +0 -0
  561. data/test/regression/xlsx_files/hyperlink14.xlsx +0 -0
  562. data/test/regression/xlsx_files/hyperlink15.xlsx +0 -0
  563. data/test/regression/xlsx_files/hyperlink16.xlsx +0 -0
  564. data/test/regression/xlsx_files/hyperlink17.xlsx +0 -0
  565. data/test/regression/xlsx_files/hyperlink18.xlsx +0 -0
  566. data/test/regression/xlsx_files/image01.xlsx +0 -0
  567. data/test/regression/xlsx_files/image02.xlsx +0 -0
  568. data/test/regression/xlsx_files/image03.xlsx +0 -0
  569. data/test/regression/xlsx_files/image04.xlsx +0 -0
  570. data/test/regression/xlsx_files/image05.xlsx +0 -0
  571. data/test/regression/xlsx_files/image06.xlsx +0 -0
  572. data/test/regression/xlsx_files/image07.xlsx +0 -0
  573. data/test/regression/xlsx_files/outline01.xlsx +0 -0
  574. data/test/regression/xlsx_files/outline02.xlsx +0 -0
  575. data/test/regression/xlsx_files/outline03.xlsx +0 -0
  576. data/test/regression/xlsx_files/outline04.xlsx +0 -0
  577. data/test/regression/xlsx_files/outline05.xlsx +0 -0
  578. data/test/regression/xlsx_files/outline06.xlsx +0 -0
  579. data/test/regression/xlsx_files/page_breaks01.xlsx +0 -0
  580. data/test/regression/xlsx_files/page_breaks02.xlsx +0 -0
  581. data/test/regression/xlsx_files/page_breaks03.xlsx +0 -0
  582. data/test/regression/xlsx_files/page_breaks04.xlsx +0 -0
  583. data/test/regression/xlsx_files/page_breaks05.xlsx +0 -0
  584. data/test/regression/xlsx_files/page_breaks06.xlsx +0 -0
  585. data/test/regression/xlsx_files/page_view01.xlsx +0 -0
  586. data/test/regression/xlsx_files/panes01.xlsx +0 -0
  587. data/test/regression/xlsx_files/print_across01.xlsx +0 -0
  588. data/test/regression/xlsx_files/print_area01.xlsx +0 -0
  589. data/test/regression/xlsx_files/print_area02.xlsx +0 -0
  590. data/test/regression/xlsx_files/print_area03.xlsx +0 -0
  591. data/test/regression/xlsx_files/print_area04.xlsx +0 -0
  592. data/test/regression/xlsx_files/print_area05.xlsx +0 -0
  593. data/test/regression/xlsx_files/print_area06.xlsx +0 -0
  594. data/test/regression/xlsx_files/print_area07.xlsx +0 -0
  595. data/test/regression/xlsx_files/print_options01.xlsx +0 -0
  596. data/test/regression/xlsx_files/print_options02.xlsx +0 -0
  597. data/test/regression/xlsx_files/print_options03.xlsx +0 -0
  598. data/test/regression/xlsx_files/print_options04.xlsx +0 -0
  599. data/test/regression/xlsx_files/print_options05.xlsx +0 -0
  600. data/test/regression/xlsx_files/print_options06.xlsx +0 -0
  601. data/test/regression/xlsx_files/print_scale01.xlsx +0 -0
  602. data/test/regression/xlsx_files/print_scale02.xlsx +0 -0
  603. data/test/regression/xlsx_files/properties01.xlsx +0 -0
  604. data/test/regression/xlsx_files/repeat01.xlsx +0 -0
  605. data/test/regression/xlsx_files/repeat02.xlsx +0 -0
  606. data/test/regression/xlsx_files/repeat03.xlsx +0 -0
  607. data/test/regression/xlsx_files/repeat04.xlsx +0 -0
  608. data/test/regression/xlsx_files/repeat05.xlsx +0 -0
  609. data/test/regression/xlsx_files/rich_string01.xlsx +0 -0
  610. data/test/regression/xlsx_files/rich_string02.xlsx +0 -0
  611. data/test/regression/xlsx_files/rich_string03.xlsx +0 -0
  612. data/test/regression/xlsx_files/rich_string04.xlsx +0 -0
  613. data/test/regression/xlsx_files/rich_string05.xlsx +0 -0
  614. data/test/regression/xlsx_files/rich_string06.xlsx +0 -0
  615. data/test/regression/xlsx_files/rich_string07.xlsx +0 -0
  616. data/test/regression/xlsx_files/rich_string08.xlsx +0 -0
  617. data/test/regression/xlsx_files/rich_string09.xlsx +0 -0
  618. data/test/regression/xlsx_files/rich_string10.xlsx +0 -0
  619. data/test/regression/xlsx_files/rich_string11.xlsx +0 -0
  620. data/test/regression/xlsx_files/row_col_format01.xlsx +0 -0
  621. data/test/regression/xlsx_files/row_col_format02.xlsx +0 -0
  622. data/test/regression/xlsx_files/row_col_format03.xlsx +0 -0
  623. data/test/regression/xlsx_files/row_col_format04.xlsx +0 -0
  624. data/test/regression/xlsx_files/row_col_format05.xlsx +0 -0
  625. data/test/regression/xlsx_files/row_col_format06.xlsx +0 -0
  626. data/test/regression/xlsx_files/row_col_format07.xlsx +0 -0
  627. data/test/regression/xlsx_files/row_col_format08.xlsx +0 -0
  628. data/test/regression/xlsx_files/row_col_format09.xlsx +0 -0
  629. data/test/regression/xlsx_files/row_col_format10.xlsx +0 -0
  630. data/test/regression/xlsx_files/row_col_format11.xlsx +0 -0
  631. data/test/regression/xlsx_files/row_col_format12.xlsx +0 -0
  632. data/test/regression/xlsx_files/row_col_format13.xlsx +0 -0
  633. data/test/regression/xlsx_files/row_col_format14.xlsx +0 -0
  634. data/test/regression/xlsx_files/shape_connect01.xlsx +0 -0
  635. data/test/regression/xlsx_files/shape_connect02.xlsx +0 -0
  636. data/test/regression/xlsx_files/shape_connect03.xlsx +0 -0
  637. data/test/regression/xlsx_files/shape_connect04.xlsx +0 -0
  638. data/test/regression/xlsx_files/shape_scale01.xlsx +0 -0
  639. data/test/regression/xlsx_files/shape_stencil01.xlsx +0 -0
  640. data/test/regression/xlsx_files/shared_strings01.xlsx +0 -0
  641. data/test/regression/xlsx_files/shared_strings02.xlsx +0 -0
  642. data/test/regression/xlsx_files/simple01.xlsx +0 -0
  643. data/test/regression/xlsx_files/simple02.xlsx +0 -0
  644. data/test/regression/xlsx_files/tab_color01.xlsx +0 -0
  645. data/test/regression/xlsx_files/table01.xlsx +0 -0
  646. data/test/regression/xlsx_files/table02.xlsx +0 -0
  647. data/test/regression/xlsx_files/table03.xlsx +0 -0
  648. data/test/regression/xlsx_files/table04.xlsx +0 -0
  649. data/test/regression/xlsx_files/table05.xlsx +0 -0
  650. data/test/regression/xlsx_files/table06.xlsx +0 -0
  651. data/test/regression/xlsx_files/table07.xlsx +0 -0
  652. data/test/regression/xlsx_files/table08.xlsx +0 -0
  653. data/test/regression/xlsx_files/table09.xlsx +0 -0
  654. data/test/regression/xlsx_files/table10.xlsx +0 -0
  655. data/test/regression/xlsx_files/table11.xlsx +0 -0
  656. data/test/regression/xlsx_files/table12.xlsx +0 -0
  657. data/test/regression/xlsx_files/table13.xlsx +0 -0
  658. data/test/regression/xlsx_files/table14.xlsx +0 -0
  659. data/test/test_example_match.rb +2386 -889
  660. data/test/workbook/test_write_defined_names.rb +1 -1
  661. data/test/worksheet/test_cond_format_01.rb +82 -0
  662. data/test/worksheet/test_cond_format_02.rb +87 -0
  663. data/test/worksheet/test_cond_format_03.rb +97 -0
  664. data/test/worksheet/test_cond_format_04.rb +85 -0
  665. data/test/worksheet/test_cond_format_05.rb +96 -0
  666. data/test/worksheet/test_cond_format_06.rb +106 -0
  667. data/test/worksheet/test_cond_format_07.rb +116 -0
  668. data/test/worksheet/test_cond_format_08.rb +115 -0
  669. data/test/worksheet/test_cond_format_09.rb +108 -0
  670. data/test/worksheet/test_cond_format_10.rb +83 -0
  671. data/test/worksheet/test_cond_format_11.rb +85 -0
  672. data/test/worksheet/test_cond_format_12.rb +133 -0
  673. data/test/worksheet/test_cond_format_13.rb +135 -0
  674. data/test/worksheet/test_cond_format_14.rb +132 -0
  675. data/test/worksheet/test_cond_format_15.rb +93 -0
  676. data/test/worksheet/test_cond_format_16.rb +138 -0
  677. data/test/worksheet/test_cond_format_17.rb +141 -0
  678. data/test/worksheet/test_cond_format_18.rb +135 -0
  679. data/test/worksheet/test_cond_format_19.rb +139 -0
  680. data/test/worksheet/test_write_array_formula_01.rb +3 -4
  681. data/test/worksheet/test_write_data_validation_01.rb +1 -1
  682. data/test/worksheet/test_write_data_validation_02.rb +2 -2
  683. data/test/worksheet/test_write_methods.rb +6 -1
  684. data/test/worksheet/test_write_page_setup.rb +1 -1
  685. data/test/worksheet/test_write_sheet_view.rb +1 -1
  686. data/write_xlsx.gemspec +644 -9
  687. metadata +649 -22
  688. data/test/chart/test_write_chart_space.rb +0 -15
@@ -0,0 +1,139 @@
1
+ # -*- coding: utf-8 -*-
2
+ require 'helper'
3
+ require 'write_xlsx'
4
+ require 'stringio'
5
+
6
+ class TestCondFormat19 < Test::Unit::TestCase
7
+ def setup
8
+ @workbook = WriteXLSX.new(StringIO.new)
9
+ @worksheet = @workbook.add_worksheet('')
10
+ end
11
+
12
+ ###############################################################################
13
+ #
14
+ # Test the _assemble_xml_file() method.
15
+ #
16
+ # Test conditional formats.
17
+ #
18
+ def test_conditional_formats
19
+ @worksheet.select
20
+
21
+ # Start test code.
22
+ @worksheet.write('A1', 1)
23
+ @worksheet.write('A2', 2)
24
+ @worksheet.write('A3', 3)
25
+ @worksheet.write('A4', 4)
26
+ @worksheet.write('A5', 5)
27
+ @worksheet.write('A6', 6)
28
+ @worksheet.write('A7', 7)
29
+ @worksheet.write('A8', 8)
30
+ @worksheet.write('A9', 9)
31
+ @worksheet.write('A10', 10)
32
+ @worksheet.write('A11', 11)
33
+ @worksheet.write('A12', 12)
34
+
35
+ @worksheet.conditional_formatting('A1:A12',
36
+ {
37
+ :type => 'data_bar',
38
+ :min_value => 5,
39
+ :mid_value => 52,
40
+ :max_value => 90,
41
+ :min_type => 'num',
42
+ :mid_type => 'percentile',
43
+ :max_type => 'percent',
44
+ :bar_color => '#8DB4E3'
45
+ }
46
+ )
47
+
48
+ @worksheet.assemble_xml_file
49
+ result = got_to_array(@worksheet.instance_variable_get(:@writer).string)
50
+
51
+ expected = expected_to_array(expected_xml)
52
+ assert_equal(expected, result)
53
+ end
54
+
55
+ def expected_xml
56
+ <<EOS
57
+ <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
58
+ <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
59
+ <dimension ref="A1:A12"/>
60
+ <sheetViews>
61
+ <sheetView tabSelected="1" workbookViewId="0"/>
62
+ </sheetViews>
63
+ <sheetFormatPr defaultRowHeight="15"/>
64
+ <sheetData>
65
+ <row r="1" spans="1:1">
66
+ <c r="A1">
67
+ <v>1</v>
68
+ </c>
69
+ </row>
70
+ <row r="2" spans="1:1">
71
+ <c r="A2">
72
+ <v>2</v>
73
+ </c>
74
+ </row>
75
+ <row r="3" spans="1:1">
76
+ <c r="A3">
77
+ <v>3</v>
78
+ </c>
79
+ </row>
80
+ <row r="4" spans="1:1">
81
+ <c r="A4">
82
+ <v>4</v>
83
+ </c>
84
+ </row>
85
+ <row r="5" spans="1:1">
86
+ <c r="A5">
87
+ <v>5</v>
88
+ </c>
89
+ </row>
90
+ <row r="6" spans="1:1">
91
+ <c r="A6">
92
+ <v>6</v>
93
+ </c>
94
+ </row>
95
+ <row r="7" spans="1:1">
96
+ <c r="A7">
97
+ <v>7</v>
98
+ </c>
99
+ </row>
100
+ <row r="8" spans="1:1">
101
+ <c r="A8">
102
+ <v>8</v>
103
+ </c>
104
+ </row>
105
+ <row r="9" spans="1:1">
106
+ <c r="A9">
107
+ <v>9</v>
108
+ </c>
109
+ </row>
110
+ <row r="10" spans="1:1">
111
+ <c r="A10">
112
+ <v>10</v>
113
+ </c>
114
+ </row>
115
+ <row r="11" spans="1:1">
116
+ <c r="A11">
117
+ <v>11</v>
118
+ </c>
119
+ </row>
120
+ <row r="12" spans="1:1">
121
+ <c r="A12">
122
+ <v>12</v>
123
+ </c>
124
+ </row>
125
+ </sheetData>
126
+ <conditionalFormatting sqref="A1:A12">
127
+ <cfRule type="dataBar" priority="1">
128
+ <dataBar>
129
+ <cfvo type="num" val="5"/>
130
+ <cfvo type="percent" val="90"/>
131
+ <color rgb="FF8DB4E3"/>
132
+ </dataBar>
133
+ </cfRule>
134
+ </conditionalFormatting>
135
+ <pageMargins left="0.7" right="0.7" top="0.75" bottom="0.75" header="0.3" footer="0.3"/>
136
+ </worksheet>
137
+ EOS
138
+ end
139
+ end
@@ -15,8 +15,7 @@ def test_write_array_formula
15
15
  @worksheet.select
16
16
  @worksheet.write('B1', [ [ 500, 10 ], [ 300, 15 ] ])
17
17
  @worksheet.write('B5', [ [ 1, 2, 3 ], [ 20234, 21003, 10000 ] ])
18
- @worksheet.write('A6', 17079)
19
- @worksheet.write('A7', 11962)
18
+
20
19
  @worksheet.write('A1', '{=SUM(B1:C1*B2:C2)}', format, 9500)
21
20
  @worksheet.write_array_formula('A2:A2', '{=SUM(B1:C1*B2:C2)}', format, 9500)
22
21
  @worksheet.write_array_formula('A5:A7', '{=TREND(C5:C7,B5:B7)}', format, 22196)
@@ -69,7 +68,7 @@ def test_write_array_formula
69
68
  </row>
70
69
  <row r="6" spans="1:3">
71
70
  <c r="A6">
72
- <v>17079</v>
71
+ <v>0</v>
73
72
  </c>
74
73
  <c r="B6">
75
74
  <v>2</v>
@@ -80,7 +79,7 @@ def test_write_array_formula
80
79
  </row>
81
80
  <row r="7" spans="1:3">
82
81
  <c r="A7">
83
- <v>11962</v>
82
+ <v>0</v>
84
83
  </c>
85
84
  <c r="B7">
86
85
  <v>3</v>
@@ -68,7 +68,7 @@ def test_write_data_validations_list_array
68
68
  )
69
69
  @worksheet.__send__('write_data_validations')
70
70
  result = @worksheet.instance_variable_get(:@writer).string
71
- expected = '<dataValidations count="1"><dataValidation type="list" allowBlank="1" showInputMessage="1" showErrorMessage="1" sqref="A4"><formula1>&quot;open,high,close&quot;</formula1></dataValidation></dataValidations>'
71
+ expected = '<dataValidations count="1"><dataValidation type="list" allowBlank="1" showInputMessage="1" showErrorMessage="1" sqref="A4"><formula1>"open,high,close"</formula1></dataValidation></dataValidations>'
72
72
  assert_equal(expected, result)
73
73
  end
74
74
 
@@ -299,7 +299,7 @@ def test_write_data_validation_list_a_bb_ccc
299
299
  )
300
300
  @worksheet.__send__('write_data_validations')
301
301
  result = @worksheet.instance_variable_get(:@writer).string
302
- expected = '<dataValidations count="1"><dataValidation type="list" allowBlank="1" showInputMessage="1" showErrorMessage="1" sqref="B5"><formula1>&quot;a,bb,ccc&quot;</formula1></dataValidation></dataValidations>'
302
+ expected = '<dataValidations count="1"><dataValidation type="list" allowBlank="1" showInputMessage="1" showErrorMessage="1" sqref="B5"><formula1>"a,bb,ccc"</formula1></dataValidation></dataValidations>'
303
303
  assert_equal(expected, result)
304
304
  end
305
305
 
@@ -311,7 +311,7 @@ def test_write_data_validation_list_a_bb_ccc_without_dropdown
311
311
  )
312
312
  @worksheet.__send__('write_data_validations')
313
313
  result = @worksheet.instance_variable_get(:@writer).string
314
- expected = '<dataValidations count="1"><dataValidation type="list" allowBlank="1" showDropDown="1" showInputMessage="1" showErrorMessage="1" sqref="B5"><formula1>&quot;a,bb,ccc&quot;</formula1></dataValidation></dataValidations>'
314
+ expected = '<dataValidations count="1"><dataValidation type="list" allowBlank="1" showDropDown="1" showInputMessage="1" showErrorMessage="1" sqref="B5"><formula1>"a,bb,ccc"</formula1></dataValidation></dataValidations>'
315
315
  assert_equal(expected, result)
316
316
  end
317
317
 
@@ -294,10 +294,15 @@ def test_conditional_formatting_with_valid_arg_not_raise
294
294
  :value => 5,
295
295
  :format => $red_format
296
296
  }
297
-
298
297
  assert_nothing_raised do
299
298
  @worksheet.conditional_formatting(0, 0, param)
300
299
  end
300
+ param = {
301
+ :type => 'cell',
302
+ :criteria => 'greater than',
303
+ :value => 5,
304
+ :format => $red_format
305
+ }
301
306
  assert_nothing_raised do
302
307
  @worksheet.conditional_formatting(0, 0, 1, 1, param)
303
308
  end
@@ -37,7 +37,7 @@ def test_write_page_setup_with_set_portrait
37
37
  end
38
38
 
39
39
  def test_write_page_setup_with_set_paper
40
- @worksheet.set_paper(9)
40
+ @worksheet.paper = 9
41
41
  @worksheet.__send__('write_page_setup')
42
42
  result = @worksheet.instance_variable_get(:@writer).string
43
43
  expected = '<pageSetup paperSize="9" orientation="portrait" />'
@@ -38,7 +38,7 @@ def test_write_sheet_view_tab_selected_and_hide_gridlines_true
38
38
  @worksheet.hide_gridlines(true)
39
39
  @worksheet.__send__('write_sheet_view')
40
40
  result = @worksheet.instance_variable_get(:@writer).string
41
- expected = '<sheetView tabSelected="1" workbookViewId="0" />'
41
+ expected = '<sheetView showGridLines="0" tabSelected="1" workbookViewId="0" />'
42
42
  assert_equal(expected, result)
43
43
  end
44
44
 
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "write_xlsx"
8
- s.version = "0.0.4"
8
+ s.version = "0.51.0"
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"]
12
- s.date = "2012-02-13"
12
+ s.date = "2012-11-30"
13
13
  s.description = "write_xlsx s a gem to create a new file in the Excel 2007+ XLSX format, and you can use the same interface as writeexcel gem.\nThe WriteXLSX supports the following features:\n * Multiple worksheets\n * Strings and numbers\n * Unicode text\n * Rich string formats\n * Formulas (including array formats)\n * cell formatting\n * Embedded images\n * Charts\n * Autofilters\n * Data validation\n * Hyperlinks\n * Defined names\n * Grouping/Outlines\n * Cell comments\n * Panes\n * Page set-up and printing options\n\nwrite_xlsx uses the same interface as writeexcel gem.\n\ndocumentation is not completed, but writeexcel\u{2019}s documentation will help you. See http://writeexcel.web.fc2.com/\n\nAnd you can find many examples in this gem.\n"
14
14
  s.email = "cxn03651@msj.biglobe.ne.jp"
15
15
  s.extra_rdoc_files = [
@@ -33,12 +33,14 @@ Gem::Specification.new do |s|
33
33
  "examples/chart_line.rb",
34
34
  "examples/chart_pie.rb",
35
35
  "examples/chart_scatter.rb",
36
+ "examples/chart_secondary_axis.rb",
36
37
  "examples/chart_stock.rb",
37
38
  "examples/colors.rb",
38
39
  "examples/comments1.rb",
39
40
  "examples/comments2.rb",
40
41
  "examples/conditional_format.rb",
41
42
  "examples/data_validate.rb",
43
+ "examples/date_time.rb",
42
44
  "examples/defined_name.rb",
43
45
  "examples/demo.rb",
44
46
  "examples/diag_border.rb",
@@ -54,11 +56,26 @@ Gem::Specification.new do |s|
54
56
  "examples/merge5.rb",
55
57
  "examples/merge6.rb",
56
58
  "examples/outline.rb",
59
+ "examples/panes.rb",
57
60
  "examples/properties.rb",
58
61
  "examples/protection.rb",
62
+ "examples/regions.rb",
59
63
  "examples/rich_strings.rb",
60
64
  "examples/right_to_left.rb",
65
+ "examples/shape1.rb",
66
+ "examples/shape2.rb",
67
+ "examples/shape3.rb",
68
+ "examples/shape4.rb",
69
+ "examples/shape5.rb",
70
+ "examples/shape6.rb",
71
+ "examples/shape7.rb",
72
+ "examples/shape8.rb",
73
+ "examples/shape_all.rb",
74
+ "examples/stats.rb",
75
+ "examples/stats_ext.rb",
76
+ "examples/stocks.rb",
61
77
  "examples/tab_colors.rb",
78
+ "examples/tables.rb",
62
79
  "lib/write_xlsx.rb",
63
80
  "lib/write_xlsx/chart.rb",
64
81
  "lib/write_xlsx/chart/area.rb",
@@ -81,9 +98,11 @@ Gem::Specification.new do |s|
81
98
  "lib/write_xlsx/package/relationships.rb",
82
99
  "lib/write_xlsx/package/shared_strings.rb",
83
100
  "lib/write_xlsx/package/styles.rb",
101
+ "lib/write_xlsx/package/table.rb",
84
102
  "lib/write_xlsx/package/theme.rb",
85
103
  "lib/write_xlsx/package/vml.rb",
86
104
  "lib/write_xlsx/package/xml_writer_simple.rb",
105
+ "lib/write_xlsx/shape.rb",
87
106
  "lib/write_xlsx/utility.rb",
88
107
  "lib/write_xlsx/workbook.rb",
89
108
  "lib/write_xlsx/worksheet.rb",
@@ -93,9 +112,9 @@ Gem::Specification.new do |s|
93
112
  "test/chart/test_write_auto.rb",
94
113
  "test/chart/test_write_ax_id.rb",
95
114
  "test/chart/test_write_ax_pos.rb",
96
- "test/chart/test_write_chart_space.rb",
97
115
  "test/chart/test_write_cross_ax.rb",
98
116
  "test/chart/test_write_crosses.rb",
117
+ "test/chart/test_write_d_lbls.rb",
99
118
  "test/chart/test_write_format_code.rb",
100
119
  "test/chart/test_write_idx.rb",
101
120
  "test/chart/test_write_label_align.rb",
@@ -123,8 +142,28 @@ Gem::Specification.new do |s|
123
142
  "test/chart/test_write_symbol.rb",
124
143
  "test/chart/test_write_tick_lbl_pos.rb",
125
144
  "test/chart/test_write_v.rb",
145
+ "test/chartsheet/test_chartsheet01.rb",
126
146
  "test/drawing/test_drawing_chart_01.rb",
127
147
  "test/drawing/test_drawing_image_01.rb",
148
+ "test/drawing/test_drawing_shape_01.rb",
149
+ "test/drawing/test_drawing_shape_02.rb",
150
+ "test/drawing/test_drawing_shape_03.rb",
151
+ "test/drawing/test_drawing_shape_04.rb",
152
+ "test/drawing/test_drawing_shape_05.rb",
153
+ "test/drawing/test_drawing_shape_06.rb",
154
+ "test/drawing/test_drawing_shape_07.rb",
155
+ "test/drawing/test_write_a_graphic_frame_locks.rb",
156
+ "test/drawing/test_write_c_chart.rb",
157
+ "test/drawing/test_write_c_nv_graphic_frame_pr.rb",
158
+ "test/drawing/test_write_c_nv_pr.rb",
159
+ "test/drawing/test_write_col.rb",
160
+ "test/drawing/test_write_col_off.rb",
161
+ "test/drawing/test_write_ext.rb",
162
+ "test/drawing/test_write_pos.rb",
163
+ "test/drawing/test_write_row.rb",
164
+ "test/drawing/test_write_row_off.rb",
165
+ "test/drawing/test_write_xfrm_extension.rb",
166
+ "test/drawing/test_write_xfrm_offset.rb",
128
167
  "test/helper.rb",
129
168
  "test/package/app/test_app01.rb",
130
169
  "test/package/app/test_app02.rb",
@@ -150,6 +189,22 @@ Gem::Specification.new do |s|
150
189
  "test/package/styles/test_styles_07.rb",
151
190
  "test/package/styles/test_styles_08.rb",
152
191
  "test/package/styles/test_styles_09.rb",
192
+ "test/package/table/test_table01.rb",
193
+ "test/package/table/test_table02.rb",
194
+ "test/package/table/test_table03.rb",
195
+ "test/package/table/test_table04.rb",
196
+ "test/package/table/test_table05.rb",
197
+ "test/package/table/test_table06.rb",
198
+ "test/package/table/test_table07.rb",
199
+ "test/package/table/test_table08.rb",
200
+ "test/package/table/test_table09.rb",
201
+ "test/package/table/test_table10.rb",
202
+ "test/package/table/test_table11.rb",
203
+ "test/package/table/test_table12.rb",
204
+ "test/package/table/test_write_auto_filter.rb",
205
+ "test/package/table/test_write_table_column.rb",
206
+ "test/package/table/test_write_table_style_info.rb",
207
+ "test/package/table/test_write_xml_declaration.rb",
153
208
  "test/package/vml/test_write_anchor.rb",
154
209
  "test/package/vml/test_write_auto_fill.rb",
155
210
  "test/package/vml/test_write_column.rb",
@@ -175,11 +230,13 @@ Gem::Specification.new do |s|
175
230
  "test/perl_output/chart_pie.xlsx",
176
231
  "test/perl_output/chart_scatter.xlsx",
177
232
  "test/perl_output/chart_scatter06.xlsx",
233
+ "test/perl_output/chart_secondary_axis.xlsx",
178
234
  "test/perl_output/chart_stock.xlsx",
179
235
  "test/perl_output/comments1.xlsx",
180
236
  "test/perl_output/comments2.xlsx",
181
237
  "test/perl_output/conditional_format.xlsx",
182
238
  "test/perl_output/data_validate.xlsx",
239
+ "test/perl_output/date_time.xlsx",
183
240
  "test/perl_output/defined_name.xlsx",
184
241
  "test/perl_output/demo.xlsx",
185
242
  "test/perl_output/diag_border.xlsx",
@@ -196,12 +253,574 @@ Gem::Specification.new do |s|
196
253
  "test/perl_output/merge5.xlsx",
197
254
  "test/perl_output/merge6.xlsx",
198
255
  "test/perl_output/outline.xlsx",
256
+ "test/perl_output/outline_collapsed.xlsx",
257
+ "test/perl_output/panes.xlsx",
199
258
  "test/perl_output/print_scale.xlsx",
200
259
  "test/perl_output/properties.xlsx",
201
260
  "test/perl_output/protection.xlsx",
261
+ "test/perl_output/regions.xlsx",
202
262
  "test/perl_output/rich_strings.xlsx",
203
263
  "test/perl_output/right_to_left.xlsx",
264
+ "test/perl_output/shape1.xlsx",
265
+ "test/perl_output/shape2.xlsx",
266
+ "test/perl_output/shape3.xlsx",
267
+ "test/perl_output/shape4.xlsx",
268
+ "test/perl_output/shape5.xlsx",
269
+ "test/perl_output/shape6.xlsx",
270
+ "test/perl_output/shape7.xlsx",
271
+ "test/perl_output/shape8.xlsx",
272
+ "test/perl_output/shape_all.xlsx",
273
+ "test/perl_output/stats.xlsx",
274
+ "test/perl_output/stats_ext.xlsx",
275
+ "test/perl_output/stocks.xlsx",
204
276
  "test/perl_output/tab_colors.xlsx",
277
+ "test/perl_output/tables.xlsx",
278
+ "test/regression/images/blue.jpg",
279
+ "test/regression/images/blue.png",
280
+ "test/regression/images/grey.jpg",
281
+ "test/regression/images/grey.png",
282
+ "test/regression/images/red.bmp",
283
+ "test/regression/images/red.jpg",
284
+ "test/regression/images/red.png",
285
+ "test/regression/images/yellow.jpg",
286
+ "test/regression/images/yellow.png",
287
+ "test/regression/test_array_formula01.rb",
288
+ "test/regression/test_array_formula02.rb",
289
+ "test/regression/test_autofilter00.rb",
290
+ "test/regression/test_autofilter01.rb",
291
+ "test/regression/test_autofilter02.rb",
292
+ "test/regression/test_autofilter03.rb",
293
+ "test/regression/test_autofilter04.rb",
294
+ "test/regression/test_autofilter05.rb",
295
+ "test/regression/test_autofilter06.rb",
296
+ "test/regression/test_autofilter07.rb",
297
+ "test/regression/test_chart_area01.rb",
298
+ "test/regression/test_chart_area02.rb",
299
+ "test/regression/test_chart_area03.rb",
300
+ "test/regression/test_chart_axis01.rb",
301
+ "test/regression/test_chart_axis02.rb",
302
+ "test/regression/test_chart_axis03.rb",
303
+ "test/regression/test_chart_axis04.rb",
304
+ "test/regression/test_chart_axis05.rb",
305
+ "test/regression/test_chart_axis06.rb",
306
+ "test/regression/test_chart_axis07.rb",
307
+ "test/regression/test_chart_axis08.rb",
308
+ "test/regression/test_chart_axis09.rb",
309
+ "test/regression/test_chart_axis10.rb",
310
+ "test/regression/test_chart_axis11.rb",
311
+ "test/regression/test_chart_axis12.rb",
312
+ "test/regression/test_chart_axis13.rb",
313
+ "test/regression/test_chart_axis14.rb",
314
+ "test/regression/test_chart_axis15.rb",
315
+ "test/regression/test_chart_axis16.rb",
316
+ "test/regression/test_chart_axis17.rb",
317
+ "test/regression/test_chart_axis18.rb",
318
+ "test/regression/test_chart_axis19.rb",
319
+ "test/regression/test_chart_axis20.rb",
320
+ "test/regression/test_chart_axis21.rb",
321
+ "test/regression/test_chart_bar01.rb",
322
+ "test/regression/test_chart_bar02.rb",
323
+ "test/regression/test_chart_bar03.rb",
324
+ "test/regression/test_chart_bar04.rb",
325
+ "test/regression/test_chart_bar05.rb",
326
+ "test/regression/test_chart_bar06.rb",
327
+ "test/regression/test_chart_bar07.rb",
328
+ "test/regression/test_chart_bar08.rb",
329
+ "test/regression/test_chart_bar09.rb",
330
+ "test/regression/test_chart_bar10.rb",
331
+ "test/regression/test_chart_bar11.rb",
332
+ "test/regression/test_chart_bar12.rb",
333
+ "test/regression/test_chart_bar13.rb",
334
+ "test/regression/test_chart_bar14.rb",
335
+ "test/regression/test_chart_bar15.rb",
336
+ "test/regression/test_chart_bar16.rb",
337
+ "test/regression/test_chart_bar17.rb",
338
+ "test/regression/test_chart_bar18.rb",
339
+ "test/regression/test_chart_bar19.rb",
340
+ "test/regression/test_chart_bar20.rb",
341
+ "test/regression/test_chart_bar21.rb",
342
+ "test/regression/test_chart_bar22.rb",
343
+ "test/regression/test_chart_bar23.rb",
344
+ "test/regression/test_chart_bar24.rb",
345
+ "test/regression/test_chart_blank01.rb",
346
+ "test/regression/test_chart_blank02.rb",
347
+ "test/regression/test_chart_blank03.rb",
348
+ "test/regression/test_chart_blank04.rb",
349
+ "test/regression/test_chart_blank05.rb",
350
+ "test/regression/test_chart_blank06.rb",
351
+ "test/regression/test_chart_column01.rb",
352
+ "test/regression/test_chart_column02.rb",
353
+ "test/regression/test_chart_column03.rb",
354
+ "test/regression/test_chart_column04.rb",
355
+ "test/regression/test_chart_column05.rb",
356
+ "test/regression/test_chart_column06.rb",
357
+ "test/regression/test_chart_crossing01.rb",
358
+ "test/regression/test_chart_crossing02.rb",
359
+ "test/regression/test_chart_crossing03.rb",
360
+ "test/regression/test_chart_crossing04.rb",
361
+ "test/regression/test_chart_format01.rb",
362
+ "test/regression/test_chart_format02.rb",
363
+ "test/regression/test_chart_format03.rb",
364
+ "test/regression/test_chart_format04.rb",
365
+ "test/regression/test_chart_format05.rb",
366
+ "test/regression/test_chart_format06.rb",
367
+ "test/regression/test_chart_format07.rb",
368
+ "test/regression/test_chart_format08.rb",
369
+ "test/regression/test_chart_format09.rb",
370
+ "test/regression/test_chart_format10.rb",
371
+ "test/regression/test_chart_format11.rb",
372
+ "test/regression/test_chart_format12.rb",
373
+ "test/regression/test_chart_format13.rb",
374
+ "test/regression/test_chart_format14.rb",
375
+ "test/regression/test_chart_format15.rb",
376
+ "test/regression/test_chart_format16.rb",
377
+ "test/regression/test_chart_format17.rb",
378
+ "test/regression/test_chart_format18.rb",
379
+ "test/regression/test_chart_line01.rb",
380
+ "test/regression/test_chart_line02.rb",
381
+ "test/regression/test_chart_name01.rb",
382
+ "test/regression/test_chart_name02.rb",
383
+ "test/regression/test_chart_name03.rb",
384
+ "test/regression/test_chart_pie01.rb",
385
+ "test/regression/test_chart_scatter01.rb",
386
+ "test/regression/test_chart_scatter02.rb",
387
+ "test/regression/test_chart_scatter03.rb",
388
+ "test/regression/test_chart_scatter04.rb",
389
+ "test/regression/test_chart_scatter05.rb",
390
+ "test/regression/test_chart_scatter06.rb",
391
+ "test/regression/test_chart_scatter07.rb",
392
+ "test/regression/test_chart_sparse01.rb",
393
+ "test/regression/test_chart_stock01.rb",
394
+ "test/regression/test_chart_stock02.rb",
395
+ "test/regression/test_chart_str01.rb",
396
+ "test/regression/test_chart_str02.rb",
397
+ "test/regression/test_chartsheet01.rb",
398
+ "test/regression/test_chartsheet02.rb",
399
+ "test/regression/test_chartsheet03.rb",
400
+ "test/regression/test_chartsheet04.rb",
401
+ "test/regression/test_chartsheet05.rb",
402
+ "test/regression/test_chartsheet06.rb",
403
+ "test/regression/test_chartsheet07.rb",
404
+ "test/regression/test_chartsheet08.rb",
405
+ "test/regression/test_chartsheet09.rb",
406
+ "test/regression/test_comment01.rb",
407
+ "test/regression/test_comment02.rb",
408
+ "test/regression/test_comment03.rb",
409
+ "test/regression/test_comment04.rb",
410
+ "test/regression/test_comment06.rb",
411
+ "test/regression/test_comment07.rb",
412
+ "test/regression/test_comment08.rb",
413
+ "test/regression/test_comment09.rb",
414
+ "test/regression/test_comment10.rb",
415
+ "test/regression/test_cond_format01.rb",
416
+ "test/regression/test_cond_format02.rb",
417
+ "test/regression/test_cond_format03.rb",
418
+ "test/regression/test_cond_format04.rb",
419
+ "test/regression/test_cond_format05.rb",
420
+ "test/regression/test_cond_format06.rb",
421
+ "test/regression/test_cond_format07.rb",
422
+ "test/regression/test_cond_format08.rb",
423
+ "test/regression/test_cond_format10.rb",
424
+ "test/regression/test_cond_format11.rb",
425
+ "test/regression/test_cond_format12.rb",
426
+ "test/regression/test_custom_colors01.rb",
427
+ "test/regression/test_date_1904_01.rb",
428
+ "test/regression/test_date_1904_02.rb",
429
+ "test/regression/test_defined_name01.rb",
430
+ "test/regression/test_escapes01.rb",
431
+ "test/regression/test_escapes02.rb",
432
+ "test/regression/test_escapes03.rb",
433
+ "test/regression/test_fit_to_pages01.rb",
434
+ "test/regression/test_fit_to_pages02.rb",
435
+ "test/regression/test_fit_to_pages03.rb",
436
+ "test/regression/test_fit_to_pages04.rb",
437
+ "test/regression/test_fit_to_pages05.rb",
438
+ "test/regression/test_format01.rb",
439
+ "test/regression/test_format02.rb",
440
+ "test/regression/test_format03.rb",
441
+ "test/regression/test_format04.rb",
442
+ "test/regression/test_gridlines01.rb",
443
+ "test/regression/test_hyperlink01.rb",
444
+ "test/regression/test_hyperlink02.rb",
445
+ "test/regression/test_hyperlink03.rb",
446
+ "test/regression/test_hyperlink04.rb",
447
+ "test/regression/test_hyperlink05.rb",
448
+ "test/regression/test_hyperlink06.rb",
449
+ "test/regression/test_hyperlink07.rb",
450
+ "test/regression/test_hyperlink08.rb",
451
+ "test/regression/test_hyperlink09.rb",
452
+ "test/regression/test_hyperlink10.rb",
453
+ "test/regression/test_hyperlink11.rb",
454
+ "test/regression/test_hyperlink12.rb",
455
+ "test/regression/test_hyperlink13.rb",
456
+ "test/regression/test_hyperlink14.rb",
457
+ "test/regression/test_hyperlink15.rb",
458
+ "test/regression/test_hyperlink16.rb",
459
+ "test/regression/test_hyperlink17.rb",
460
+ "test/regression/test_hyperlink18.rb",
461
+ "test/regression/test_image01.rb",
462
+ "test/regression/test_image02.rb",
463
+ "test/regression/test_image03.rb",
464
+ "test/regression/test_image04.rb",
465
+ "test/regression/test_image05.rb",
466
+ "test/regression/test_image06.rb",
467
+ "test/regression/test_image07.rb",
468
+ "test/regression/test_outline01.rb",
469
+ "test/regression/test_outline02.rb",
470
+ "test/regression/test_outline03.rb",
471
+ "test/regression/test_outline04.rb",
472
+ "test/regression/test_outline05.rb",
473
+ "test/regression/test_outline06.rb",
474
+ "test/regression/test_page_breaks01.rb",
475
+ "test/regression/test_page_breaks02.rb",
476
+ "test/regression/test_page_breaks03.rb",
477
+ "test/regression/test_page_breaks04.rb",
478
+ "test/regression/test_page_breaks05.rb",
479
+ "test/regression/test_page_breaks06.rb",
480
+ "test/regression/test_page_view01.rb",
481
+ "test/regression/test_panes01.rb",
482
+ "test/regression/test_print_across01.rb",
483
+ "test/regression/test_print_area01.rb",
484
+ "test/regression/test_print_area02.rb",
485
+ "test/regression/test_print_area03.rb",
486
+ "test/regression/test_print_area04.rb",
487
+ "test/regression/test_print_area05.rb",
488
+ "test/regression/test_print_area06.rb",
489
+ "test/regression/test_print_area07.rb",
490
+ "test/regression/test_print_options01.rb",
491
+ "test/regression/test_print_options02.rb",
492
+ "test/regression/test_print_options03.rb",
493
+ "test/regression/test_print_options04.rb",
494
+ "test/regression/test_print_options05.rb",
495
+ "test/regression/test_print_options06.rb",
496
+ "test/regression/test_print_scale01.rb",
497
+ "test/regression/test_print_scale02.rb",
498
+ "test/regression/test_properties01.rb",
499
+ "test/regression/test_repeat01.rb",
500
+ "test/regression/test_repeat02.rb",
501
+ "test/regression/test_repeat03.rb",
502
+ "test/regression/test_repeat04.rb",
503
+ "test/regression/test_repeat05.rb",
504
+ "test/regression/test_rich_string01.rb",
505
+ "test/regression/test_rich_string02.rb",
506
+ "test/regression/test_rich_string03.rb",
507
+ "test/regression/test_rich_string04.rb",
508
+ "test/regression/test_rich_string05.rb",
509
+ "test/regression/test_rich_string06.rb",
510
+ "test/regression/test_rich_string07.rb",
511
+ "test/regression/test_rich_string08.rb",
512
+ "test/regression/test_rich_string09.rb",
513
+ "test/regression/test_rich_string10.rb",
514
+ "test/regression/test_rich_string11.rb",
515
+ "test/regression/test_row_col_format01.rb",
516
+ "test/regression/test_row_col_format02.rb",
517
+ "test/regression/test_row_col_format03.rb",
518
+ "test/regression/test_row_col_format04.rb",
519
+ "test/regression/test_row_col_format05.rb",
520
+ "test/regression/test_row_col_format06.rb",
521
+ "test/regression/test_row_col_format07.rb",
522
+ "test/regression/test_row_col_format08.rb",
523
+ "test/regression/test_row_col_format09.rb",
524
+ "test/regression/test_row_col_format10.rb",
525
+ "test/regression/test_row_col_format11.rb",
526
+ "test/regression/test_row_col_format12.rb",
527
+ "test/regression/test_row_col_format13.rb",
528
+ "test/regression/test_row_col_format14.rb",
529
+ "test/regression/test_shape_connect01.rb",
530
+ "test/regression/test_shape_connect02.rb",
531
+ "test/regression/test_shape_connect03.rb",
532
+ "test/regression/test_shape_connect04.rb",
533
+ "test/regression/test_shape_scale01.rb",
534
+ "test/regression/test_shape_stencil01.rb",
535
+ "test/regression/test_shared_strings01.rb",
536
+ "test/regression/test_shared_strings02.rb",
537
+ "test/regression/test_simple01.rb",
538
+ "test/regression/test_simple02.rb",
539
+ "test/regression/test_tab_color01.rb",
540
+ "test/regression/test_table01.rb",
541
+ "test/regression/test_table02.rb",
542
+ "test/regression/test_table03.rb",
543
+ "test/regression/test_table04.rb",
544
+ "test/regression/test_table05.rb",
545
+ "test/regression/test_table06.rb",
546
+ "test/regression/test_table07.rb",
547
+ "test/regression/test_table08.rb",
548
+ "test/regression/test_table09.rb",
549
+ "test/regression/test_table10.rb",
550
+ "test/regression/test_table11.rb",
551
+ "test/regression/test_table12.rb",
552
+ "test/regression/test_table13.rb",
553
+ "test/regression/test_table14.rb",
554
+ "test/regression/xlsx_files/array_formula01.xlsx",
555
+ "test/regression/xlsx_files/array_formula02.xlsx",
556
+ "test/regression/xlsx_files/autofilter00.xlsx",
557
+ "test/regression/xlsx_files/autofilter01.xlsx",
558
+ "test/regression/xlsx_files/autofilter02.xlsx",
559
+ "test/regression/xlsx_files/autofilter03.xlsx",
560
+ "test/regression/xlsx_files/autofilter04.xlsx",
561
+ "test/regression/xlsx_files/autofilter05.xlsx",
562
+ "test/regression/xlsx_files/autofilter06.xlsx",
563
+ "test/regression/xlsx_files/autofilter07.xlsx",
564
+ "test/regression/xlsx_files/chart_area01.xlsx",
565
+ "test/regression/xlsx_files/chart_area02.xlsx",
566
+ "test/regression/xlsx_files/chart_area03.xlsx",
567
+ "test/regression/xlsx_files/chart_area04.xlsx",
568
+ "test/regression/xlsx_files/chart_axis01.xlsx",
569
+ "test/regression/xlsx_files/chart_axis02.xlsx",
570
+ "test/regression/xlsx_files/chart_axis03.xlsx",
571
+ "test/regression/xlsx_files/chart_axis04.xlsx",
572
+ "test/regression/xlsx_files/chart_axis05.xlsx",
573
+ "test/regression/xlsx_files/chart_axis06.xlsx",
574
+ "test/regression/xlsx_files/chart_axis07.xlsx",
575
+ "test/regression/xlsx_files/chart_axis08.xlsx",
576
+ "test/regression/xlsx_files/chart_axis09.xlsx",
577
+ "test/regression/xlsx_files/chart_axis10.xlsx",
578
+ "test/regression/xlsx_files/chart_axis11.xlsx",
579
+ "test/regression/xlsx_files/chart_axis12.xlsx",
580
+ "test/regression/xlsx_files/chart_axis13.xlsx",
581
+ "test/regression/xlsx_files/chart_axis14.xlsx",
582
+ "test/regression/xlsx_files/chart_axis15.xlsx",
583
+ "test/regression/xlsx_files/chart_axis16.xlsx",
584
+ "test/regression/xlsx_files/chart_axis17.xlsx",
585
+ "test/regression/xlsx_files/chart_axis18.xlsx",
586
+ "test/regression/xlsx_files/chart_axis19.xlsx",
587
+ "test/regression/xlsx_files/chart_axis20.xlsx",
588
+ "test/regression/xlsx_files/chart_axis21.xlsx",
589
+ "test/regression/xlsx_files/chart_bar01.xlsx",
590
+ "test/regression/xlsx_files/chart_bar02.xlsx",
591
+ "test/regression/xlsx_files/chart_bar03.xlsx",
592
+ "test/regression/xlsx_files/chart_bar04.xlsx",
593
+ "test/regression/xlsx_files/chart_bar05.xlsx",
594
+ "test/regression/xlsx_files/chart_bar06.xlsx",
595
+ "test/regression/xlsx_files/chart_bar07.xlsx",
596
+ "test/regression/xlsx_files/chart_bar08.xlsx",
597
+ "test/regression/xlsx_files/chart_bar09.xlsx",
598
+ "test/regression/xlsx_files/chart_bar10.xlsx",
599
+ "test/regression/xlsx_files/chart_bar11.xlsx",
600
+ "test/regression/xlsx_files/chart_bar12.xlsx",
601
+ "test/regression/xlsx_files/chart_bar13.xlsx",
602
+ "test/regression/xlsx_files/chart_bar14.xlsx",
603
+ "test/regression/xlsx_files/chart_bar15.xlsx",
604
+ "test/regression/xlsx_files/chart_bar16.xlsx",
605
+ "test/regression/xlsx_files/chart_bar17.xlsx",
606
+ "test/regression/xlsx_files/chart_bar18.xlsx",
607
+ "test/regression/xlsx_files/chart_bar19.xlsx",
608
+ "test/regression/xlsx_files/chart_bar20.xlsx",
609
+ "test/regression/xlsx_files/chart_bar21.xlsx",
610
+ "test/regression/xlsx_files/chart_bar22.xlsx",
611
+ "test/regression/xlsx_files/chart_bar23.xlsx",
612
+ "test/regression/xlsx_files/chart_bar24.xlsx",
613
+ "test/regression/xlsx_files/chart_blank01.xlsx",
614
+ "test/regression/xlsx_files/chart_blank02.xlsx",
615
+ "test/regression/xlsx_files/chart_blank03.xlsx",
616
+ "test/regression/xlsx_files/chart_blank04.xlsx",
617
+ "test/regression/xlsx_files/chart_blank05.xlsx",
618
+ "test/regression/xlsx_files/chart_blank06.xlsx",
619
+ "test/regression/xlsx_files/chart_column01.xlsx",
620
+ "test/regression/xlsx_files/chart_column02.xlsx",
621
+ "test/regression/xlsx_files/chart_column03.xlsx",
622
+ "test/regression/xlsx_files/chart_column04.xlsx",
623
+ "test/regression/xlsx_files/chart_column05.xlsx",
624
+ "test/regression/xlsx_files/chart_column06.xlsx",
625
+ "test/regression/xlsx_files/chart_crossing01.xlsx",
626
+ "test/regression/xlsx_files/chart_crossing02.xlsx",
627
+ "test/regression/xlsx_files/chart_crossing03.xlsx",
628
+ "test/regression/xlsx_files/chart_crossing04.xlsx",
629
+ "test/regression/xlsx_files/chart_format01.xlsx",
630
+ "test/regression/xlsx_files/chart_format02.xlsx",
631
+ "test/regression/xlsx_files/chart_format03.xlsx",
632
+ "test/regression/xlsx_files/chart_format04.xlsx",
633
+ "test/regression/xlsx_files/chart_format05.xlsx",
634
+ "test/regression/xlsx_files/chart_format06.xlsx",
635
+ "test/regression/xlsx_files/chart_format07.xlsx",
636
+ "test/regression/xlsx_files/chart_format08.xlsx",
637
+ "test/regression/xlsx_files/chart_format09.xlsx",
638
+ "test/regression/xlsx_files/chart_format10.xlsx",
639
+ "test/regression/xlsx_files/chart_format11.xlsx",
640
+ "test/regression/xlsx_files/chart_format12.xlsx",
641
+ "test/regression/xlsx_files/chart_format13.xlsx",
642
+ "test/regression/xlsx_files/chart_format14.xlsx",
643
+ "test/regression/xlsx_files/chart_format15.xlsx",
644
+ "test/regression/xlsx_files/chart_format16.xlsx",
645
+ "test/regression/xlsx_files/chart_format17.xlsx",
646
+ "test/regression/xlsx_files/chart_format18.xlsx",
647
+ "test/regression/xlsx_files/chart_line01.xlsx",
648
+ "test/regression/xlsx_files/chart_line02.xlsx",
649
+ "test/regression/xlsx_files/chart_name01.xlsx",
650
+ "test/regression/xlsx_files/chart_name02.xlsx",
651
+ "test/regression/xlsx_files/chart_name03.xlsx",
652
+ "test/regression/xlsx_files/chart_pie01.xlsx",
653
+ "test/regression/xlsx_files/chart_scatter01.xlsx",
654
+ "test/regression/xlsx_files/chart_scatter02.xlsx",
655
+ "test/regression/xlsx_files/chart_scatter03.xlsx",
656
+ "test/regression/xlsx_files/chart_scatter04.xlsx",
657
+ "test/regression/xlsx_files/chart_scatter05.xlsx",
658
+ "test/regression/xlsx_files/chart_scatter06.xlsx",
659
+ "test/regression/xlsx_files/chart_scatter07.xlsx",
660
+ "test/regression/xlsx_files/chart_sparse01.xlsx",
661
+ "test/regression/xlsx_files/chart_stock01.xlsx",
662
+ "test/regression/xlsx_files/chart_stock02.xlsx",
663
+ "test/regression/xlsx_files/chart_str01.xlsx",
664
+ "test/regression/xlsx_files/chart_str02.xlsx",
665
+ "test/regression/xlsx_files/chartsheet01.xlsx",
666
+ "test/regression/xlsx_files/chartsheet02.xlsx",
667
+ "test/regression/xlsx_files/chartsheet03.xlsx",
668
+ "test/regression/xlsx_files/chartsheet04.xlsx",
669
+ "test/regression/xlsx_files/chartsheet05.xlsx",
670
+ "test/regression/xlsx_files/chartsheet06.xlsx",
671
+ "test/regression/xlsx_files/chartsheet07.xlsx",
672
+ "test/regression/xlsx_files/chartsheet08.xlsx",
673
+ "test/regression/xlsx_files/chartsheet09.xlsx",
674
+ "test/regression/xlsx_files/comment01.xlsx",
675
+ "test/regression/xlsx_files/comment02.xlsx",
676
+ "test/regression/xlsx_files/comment03.xlsx",
677
+ "test/regression/xlsx_files/comment04.xlsx",
678
+ "test/regression/xlsx_files/comment05.xlsx",
679
+ "test/regression/xlsx_files/comment06.xlsx",
680
+ "test/regression/xlsx_files/comment07.xlsx",
681
+ "test/regression/xlsx_files/comment08.xlsx",
682
+ "test/regression/xlsx_files/comment09.xlsx",
683
+ "test/regression/xlsx_files/comment10.xlsx",
684
+ "test/regression/xlsx_files/cond_format01.xlsx",
685
+ "test/regression/xlsx_files/cond_format02.xlsx",
686
+ "test/regression/xlsx_files/cond_format03.xlsx",
687
+ "test/regression/xlsx_files/cond_format04.xlsx",
688
+ "test/regression/xlsx_files/cond_format05.xlsx",
689
+ "test/regression/xlsx_files/cond_format06.xlsx",
690
+ "test/regression/xlsx_files/cond_format07.xlsx",
691
+ "test/regression/xlsx_files/cond_format08.xlsx",
692
+ "test/regression/xlsx_files/cond_format10.xlsx",
693
+ "test/regression/xlsx_files/cond_format11.xlsx",
694
+ "test/regression/xlsx_files/cond_format12.xlsx",
695
+ "test/regression/xlsx_files/custom_colors01.xlsx",
696
+ "test/regression/xlsx_files/date_1904_01.xlsx",
697
+ "test/regression/xlsx_files/date_1904_02.xlsx",
698
+ "test/regression/xlsx_files/defined_name01.xlsx",
699
+ "test/regression/xlsx_files/escapes01.xlsx",
700
+ "test/regression/xlsx_files/escapes02.xlsx",
701
+ "test/regression/xlsx_files/escapes03.xlsx",
702
+ "test/regression/xlsx_files/filehandle01.xlsx",
703
+ "test/regression/xlsx_files/fit_to_pages01.xlsx",
704
+ "test/regression/xlsx_files/fit_to_pages02.xlsx",
705
+ "test/regression/xlsx_files/fit_to_pages03.xlsx",
706
+ "test/regression/xlsx_files/fit_to_pages04.xlsx",
707
+ "test/regression/xlsx_files/fit_to_pages05.xlsx",
708
+ "test/regression/xlsx_files/format01.xlsx",
709
+ "test/regression/xlsx_files/format02.xlsx",
710
+ "test/regression/xlsx_files/format03.xlsx",
711
+ "test/regression/xlsx_files/format04.xlsx",
712
+ "test/regression/xlsx_files/gridlines01.xlsx",
713
+ "test/regression/xlsx_files/hyperlink01.xlsx",
714
+ "test/regression/xlsx_files/hyperlink02.xlsx",
715
+ "test/regression/xlsx_files/hyperlink03.xlsx",
716
+ "test/regression/xlsx_files/hyperlink04.xlsx",
717
+ "test/regression/xlsx_files/hyperlink05.xlsx",
718
+ "test/regression/xlsx_files/hyperlink06.xlsx",
719
+ "test/regression/xlsx_files/hyperlink07.xlsx",
720
+ "test/regression/xlsx_files/hyperlink08.xlsx",
721
+ "test/regression/xlsx_files/hyperlink09.xlsx",
722
+ "test/regression/xlsx_files/hyperlink10.xlsx",
723
+ "test/regression/xlsx_files/hyperlink11.xlsx",
724
+ "test/regression/xlsx_files/hyperlink12.xlsx",
725
+ "test/regression/xlsx_files/hyperlink13.xlsx",
726
+ "test/regression/xlsx_files/hyperlink14.xlsx",
727
+ "test/regression/xlsx_files/hyperlink15.xlsx",
728
+ "test/regression/xlsx_files/hyperlink16.xlsx",
729
+ "test/regression/xlsx_files/hyperlink17.xlsx",
730
+ "test/regression/xlsx_files/hyperlink18.xlsx",
731
+ "test/regression/xlsx_files/image01.xlsx",
732
+ "test/regression/xlsx_files/image02.xlsx",
733
+ "test/regression/xlsx_files/image03.xlsx",
734
+ "test/regression/xlsx_files/image04.xlsx",
735
+ "test/regression/xlsx_files/image05.xlsx",
736
+ "test/regression/xlsx_files/image06.xlsx",
737
+ "test/regression/xlsx_files/image07.xlsx",
738
+ "test/regression/xlsx_files/outline01.xlsx",
739
+ "test/regression/xlsx_files/outline02.xlsx",
740
+ "test/regression/xlsx_files/outline03.xlsx",
741
+ "test/regression/xlsx_files/outline04.xlsx",
742
+ "test/regression/xlsx_files/outline05.xlsx",
743
+ "test/regression/xlsx_files/outline06.xlsx",
744
+ "test/regression/xlsx_files/page_breaks01.xlsx",
745
+ "test/regression/xlsx_files/page_breaks02.xlsx",
746
+ "test/regression/xlsx_files/page_breaks03.xlsx",
747
+ "test/regression/xlsx_files/page_breaks04.xlsx",
748
+ "test/regression/xlsx_files/page_breaks05.xlsx",
749
+ "test/regression/xlsx_files/page_breaks06.xlsx",
750
+ "test/regression/xlsx_files/page_view01.xlsx",
751
+ "test/regression/xlsx_files/panes01.xlsx",
752
+ "test/regression/xlsx_files/print_across01.xlsx",
753
+ "test/regression/xlsx_files/print_area01.xlsx",
754
+ "test/regression/xlsx_files/print_area02.xlsx",
755
+ "test/regression/xlsx_files/print_area03.xlsx",
756
+ "test/regression/xlsx_files/print_area04.xlsx",
757
+ "test/regression/xlsx_files/print_area05.xlsx",
758
+ "test/regression/xlsx_files/print_area06.xlsx",
759
+ "test/regression/xlsx_files/print_area07.xlsx",
760
+ "test/regression/xlsx_files/print_options01.xlsx",
761
+ "test/regression/xlsx_files/print_options02.xlsx",
762
+ "test/regression/xlsx_files/print_options03.xlsx",
763
+ "test/regression/xlsx_files/print_options04.xlsx",
764
+ "test/regression/xlsx_files/print_options05.xlsx",
765
+ "test/regression/xlsx_files/print_options06.xlsx",
766
+ "test/regression/xlsx_files/print_scale01.xlsx",
767
+ "test/regression/xlsx_files/print_scale02.xlsx",
768
+ "test/regression/xlsx_files/properties01.xlsx",
769
+ "test/regression/xlsx_files/repeat01.xlsx",
770
+ "test/regression/xlsx_files/repeat02.xlsx",
771
+ "test/regression/xlsx_files/repeat03.xlsx",
772
+ "test/regression/xlsx_files/repeat04.xlsx",
773
+ "test/regression/xlsx_files/repeat05.xlsx",
774
+ "test/regression/xlsx_files/rich_string01.xlsx",
775
+ "test/regression/xlsx_files/rich_string02.xlsx",
776
+ "test/regression/xlsx_files/rich_string03.xlsx",
777
+ "test/regression/xlsx_files/rich_string04.xlsx",
778
+ "test/regression/xlsx_files/rich_string05.xlsx",
779
+ "test/regression/xlsx_files/rich_string06.xlsx",
780
+ "test/regression/xlsx_files/rich_string07.xlsx",
781
+ "test/regression/xlsx_files/rich_string08.xlsx",
782
+ "test/regression/xlsx_files/rich_string09.xlsx",
783
+ "test/regression/xlsx_files/rich_string10.xlsx",
784
+ "test/regression/xlsx_files/rich_string11.xlsx",
785
+ "test/regression/xlsx_files/row_col_format01.xlsx",
786
+ "test/regression/xlsx_files/row_col_format02.xlsx",
787
+ "test/regression/xlsx_files/row_col_format03.xlsx",
788
+ "test/regression/xlsx_files/row_col_format04.xlsx",
789
+ "test/regression/xlsx_files/row_col_format05.xlsx",
790
+ "test/regression/xlsx_files/row_col_format06.xlsx",
791
+ "test/regression/xlsx_files/row_col_format07.xlsx",
792
+ "test/regression/xlsx_files/row_col_format08.xlsx",
793
+ "test/regression/xlsx_files/row_col_format09.xlsx",
794
+ "test/regression/xlsx_files/row_col_format10.xlsx",
795
+ "test/regression/xlsx_files/row_col_format11.xlsx",
796
+ "test/regression/xlsx_files/row_col_format12.xlsx",
797
+ "test/regression/xlsx_files/row_col_format13.xlsx",
798
+ "test/regression/xlsx_files/row_col_format14.xlsx",
799
+ "test/regression/xlsx_files/shape_connect01.xlsx",
800
+ "test/regression/xlsx_files/shape_connect02.xlsx",
801
+ "test/regression/xlsx_files/shape_connect03.xlsx",
802
+ "test/regression/xlsx_files/shape_connect04.xlsx",
803
+ "test/regression/xlsx_files/shape_scale01.xlsx",
804
+ "test/regression/xlsx_files/shape_stencil01.xlsx",
805
+ "test/regression/xlsx_files/shared_strings01.xlsx",
806
+ "test/regression/xlsx_files/shared_strings02.xlsx",
807
+ "test/regression/xlsx_files/simple01.xlsx",
808
+ "test/regression/xlsx_files/simple02.xlsx",
809
+ "test/regression/xlsx_files/tab_color01.xlsx",
810
+ "test/regression/xlsx_files/table01.xlsx",
811
+ "test/regression/xlsx_files/table02.xlsx",
812
+ "test/regression/xlsx_files/table03.xlsx",
813
+ "test/regression/xlsx_files/table04.xlsx",
814
+ "test/regression/xlsx_files/table05.xlsx",
815
+ "test/regression/xlsx_files/table06.xlsx",
816
+ "test/regression/xlsx_files/table07.xlsx",
817
+ "test/regression/xlsx_files/table08.xlsx",
818
+ "test/regression/xlsx_files/table09.xlsx",
819
+ "test/regression/xlsx_files/table10.xlsx",
820
+ "test/regression/xlsx_files/table11.xlsx",
821
+ "test/regression/xlsx_files/table12.xlsx",
822
+ "test/regression/xlsx_files/table13.xlsx",
823
+ "test/regression/xlsx_files/table14.xlsx",
205
824
  "test/test_delete_files.rb",
206
825
  "test/test_example_match.rb",
207
826
  "test/test_xml_writer_simple.rb",
@@ -214,6 +833,25 @@ Gem::Specification.new do |s|
214
833
  "test/workbook/test_write_defined_name.rb",
215
834
  "test/workbook/test_write_defined_names.rb",
216
835
  "test/worksheet/test_calculate_spans.rb",
836
+ "test/worksheet/test_cond_format_01.rb",
837
+ "test/worksheet/test_cond_format_02.rb",
838
+ "test/worksheet/test_cond_format_03.rb",
839
+ "test/worksheet/test_cond_format_04.rb",
840
+ "test/worksheet/test_cond_format_05.rb",
841
+ "test/worksheet/test_cond_format_06.rb",
842
+ "test/worksheet/test_cond_format_07.rb",
843
+ "test/worksheet/test_cond_format_08.rb",
844
+ "test/worksheet/test_cond_format_09.rb",
845
+ "test/worksheet/test_cond_format_10.rb",
846
+ "test/worksheet/test_cond_format_11.rb",
847
+ "test/worksheet/test_cond_format_12.rb",
848
+ "test/worksheet/test_cond_format_13.rb",
849
+ "test/worksheet/test_cond_format_14.rb",
850
+ "test/worksheet/test_cond_format_15.rb",
851
+ "test/worksheet/test_cond_format_16.rb",
852
+ "test/worksheet/test_cond_format_17.rb",
853
+ "test/worksheet/test_cond_format_18.rb",
854
+ "test/worksheet/test_cond_format_19.rb",
217
855
  "test/worksheet/test_convert_date_time_01.rb",
218
856
  "test/worksheet/test_convert_date_time_02.rb",
219
857
  "test/worksheet/test_convert_date_time_03.rb",
@@ -290,20 +928,17 @@ Gem::Specification.new do |s|
290
928
 
291
929
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
292
930
  s.add_runtime_dependency(%q<rubyzip>, [">= 0"])
293
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
294
931
  s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
295
- s.add_development_dependency(%q<rcov>, [">= 0"])
932
+ s.add_development_dependency(%q<bundler>, [">= 0"])
296
933
  else
297
934
  s.add_dependency(%q<rubyzip>, [">= 0"])
298
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
299
935
  s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
300
- s.add_dependency(%q<rcov>, [">= 0"])
936
+ s.add_dependency(%q<bundler>, [">= 0"])
301
937
  end
302
938
  else
303
939
  s.add_dependency(%q<rubyzip>, [">= 0"])
304
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
305
940
  s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
306
- s.add_dependency(%q<rcov>, [">= 0"])
941
+ s.add_dependency(%q<bundler>, [">= 0"])
307
942
  end
308
943
  end
309
944