├── .gitignore ├── .travis.yml ├── .yardopts ├── .yardopts_guide ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── appveyor.yml ├── axlsx.gemspec ├── examples ├── 2010_comments.rb ├── anchor_swapping.rb ├── auto_filter.rb ├── basic_charts.rb ├── chart_colors.rb ├── colored_links.rb ├── conditional_formatting │ ├── example_conditional_formatting.rb │ ├── getting_barred.rb │ ├── hitting_the_high_notes.rb │ ├── scaled_colors.rb │ └── stop_and_go.rb ├── data_validation.rb ├── example.rb ├── extractive.rb ├── image1.gif ├── image1.jpeg ├── image1.jpg ├── image1.png ├── image1_fake.jpg ├── ios_preview.rb ├── merge_cells.rb ├── no_grid_with_borders.rb ├── page_setup.rb ├── pivot_table.rb ├── pivot_test.rb ├── sample.png ├── sheet_protection.rb ├── skydrive │ └── real_example.rb ├── split.rb ├── styles.rb ├── underline.rb └── wrap_text.rb ├── lib ├── axlsx.rb ├── axlsx │ ├── content_type │ │ ├── abstract_content_type.rb │ │ ├── content_type.rb │ │ ├── default.rb │ │ └── override.rb │ ├── doc_props │ │ ├── app.rb │ │ └── core.rb │ ├── drawing │ │ ├── area_chart.rb │ │ ├── area_series.rb │ │ ├── ax_data_source.rb │ │ ├── axes.rb │ │ ├── axis.rb │ │ ├── bar_3D_chart.rb │ │ ├── bar_chart.rb │ │ ├── bar_series.rb │ │ ├── bubble_chart.rb │ │ ├── bubble_series.rb │ │ ├── cat_axis.rb │ │ ├── chart.rb │ │ ├── d_lbls.rb │ │ ├── drawing.rb │ │ ├── graphic_frame.rb │ │ ├── hyperlink.rb │ │ ├── line_3D_chart.rb │ │ ├── line_chart.rb │ │ ├── line_series.rb │ │ ├── marker.rb │ │ ├── num_data.rb │ │ ├── num_data_source.rb │ │ ├── num_val.rb │ │ ├── one_cell_anchor.rb │ │ ├── pic.rb │ │ ├── picture_locking.rb │ │ ├── pie_3D_chart.rb │ │ ├── pie_series.rb │ │ ├── scaling.rb │ │ ├── scatter_chart.rb │ │ ├── scatter_series.rb │ │ ├── ser_axis.rb │ │ ├── series.rb │ │ ├── series_title.rb │ │ ├── str_data.rb │ │ ├── str_val.rb │ │ ├── title.rb │ │ ├── two_cell_anchor.rb │ │ ├── val_axis.rb │ │ ├── view_3D.rb │ │ ├── vml_drawing.rb │ │ └── vml_shape.rb │ ├── package.rb │ ├── rels │ │ ├── relationship.rb │ │ └── relationships.rb │ ├── stylesheet │ │ ├── border.rb │ │ ├── border_pr.rb │ │ ├── cell_alignment.rb │ │ ├── cell_protection.rb │ │ ├── cell_style.rb │ │ ├── color.rb │ │ ├── dxf.rb │ │ ├── fill.rb │ │ ├── font.rb │ │ ├── gradient_fill.rb │ │ ├── gradient_stop.rb │ │ ├── num_fmt.rb │ │ ├── pattern_fill.rb │ │ ├── styles.rb │ │ ├── table_style.rb │ │ ├── table_style_element.rb │ │ ├── table_styles.rb │ │ └── xf.rb │ ├── util │ │ ├── accessors.rb │ │ ├── constants.rb │ │ ├── mime_type_utils.rb │ │ ├── options_parser.rb │ │ ├── parser.rb │ │ ├── serialized_attributes.rb │ │ ├── simple_typed_list.rb │ │ ├── storage.rb │ │ └── validators.rb │ ├── version.rb │ └── workbook │ │ ├── defined_name.rb │ │ ├── defined_names.rb │ │ ├── shared_strings_table.rb │ │ ├── workbook.rb │ │ ├── workbook_view.rb │ │ ├── workbook_views.rb │ │ └── worksheet │ │ ├── auto_filter │ │ ├── auto_filter.rb │ │ ├── filter_column.rb │ │ └── filters.rb │ │ ├── break.rb │ │ ├── cell.rb │ │ ├── cell_serializer.rb │ │ ├── cfvo.rb │ │ ├── cfvos.rb │ │ ├── col.rb │ │ ├── col_breaks.rb │ │ ├── color_scale.rb │ │ ├── cols.rb │ │ ├── comment.rb │ │ ├── comments.rb │ │ ├── conditional_formatting.rb │ │ ├── conditional_formatting_rule.rb │ │ ├── conditional_formattings.rb │ │ ├── data_bar.rb │ │ ├── data_validation.rb │ │ ├── data_validations.rb │ │ ├── date_time_converter.rb │ │ ├── dimension.rb │ │ ├── header_footer.rb │ │ ├── icon_set.rb │ │ ├── merged_cells.rb │ │ ├── outline_pr.rb │ │ ├── page_margins.rb │ │ ├── page_set_up_pr.rb │ │ ├── page_setup.rb │ │ ├── pane.rb │ │ ├── pivot_table.rb │ │ ├── pivot_table_cache_definition.rb │ │ ├── pivot_tables.rb │ │ ├── print_options.rb │ │ ├── protected_range.rb │ │ ├── protected_ranges.rb │ │ ├── rich_text.rb │ │ ├── rich_text_run.rb │ │ ├── row.rb │ │ ├── row_breaks.rb │ │ ├── selection.rb │ │ ├── sheet_calc_pr.rb │ │ ├── sheet_data.rb │ │ ├── sheet_format_pr.rb │ │ ├── sheet_pr.rb │ │ ├── sheet_protection.rb │ │ ├── sheet_view.rb │ │ ├── table.rb │ │ ├── table_style_info.rb │ │ ├── tables.rb │ │ ├── worksheet.rb │ │ ├── worksheet_comments.rb │ │ ├── worksheet_drawing.rb │ │ ├── worksheet_hyperlink.rb │ │ └── worksheet_hyperlinks.rb └── schema │ ├── dc.xsd │ ├── dcmitype.xsd │ ├── dcterms.xsd │ ├── dml-chart.xsd │ ├── dml-chartDrawing.xsd │ ├── dml-compatibility.xsd │ ├── dml-diagram.xsd │ ├── dml-lockedCanvas.xsd │ ├── dml-main.xsd │ ├── dml-picture.xsd │ ├── dml-spreadsheetDrawing.xsd │ ├── dml-wordprocessingDrawing.xsd │ ├── opc-contentTypes.xsd │ ├── opc-coreProperties.xsd │ ├── opc-digSig.xsd │ ├── opc-relationships.xsd │ ├── pml.xsd │ ├── shared-additionalCharacteristics.xsd │ ├── shared-bibliography.xsd │ ├── shared-commonSimpleTypes.xsd │ ├── shared-customXmlDataProperties.xsd │ ├── shared-customXmlSchemaProperties.xsd │ ├── shared-documentPropertiesCustom.xsd │ ├── shared-documentPropertiesExtended.xsd │ ├── shared-documentPropertiesVariantTypes.xsd │ ├── shared-math.xsd │ ├── shared-relationshipReference.xsd │ ├── sml.xsd │ ├── vml-main.xsd │ ├── vml-officeDrawing.xsd │ ├── vml-presentationDrawing.xsd │ ├── vml-spreadsheetDrawing.xsd │ ├── vml-wordprocessingDrawing.xsd │ ├── wml.xsd │ └── xml.xsd ├── notes_on_header_footer.md ├── rubima.md └── test ├── benchmark.rb ├── content_type ├── tc_content_type.rb ├── tc_default.rb └── tc_override.rb ├── doc_props ├── tc_app.rb └── tc_core.rb ├── drawing ├── tc_area_chart.rb ├── tc_area_series.rb ├── tc_axes.rb ├── tc_axis.rb ├── tc_bar_3D_chart.rb ├── tc_bar_chart.rb ├── tc_bar_series.rb ├── tc_bubble_chart.rb ├── tc_bubble_series.rb ├── tc_cat_axis.rb ├── tc_cat_axis_data.rb ├── tc_chart.rb ├── tc_d_lbls.rb ├── tc_data_source.rb ├── tc_drawing.rb ├── tc_graphic_frame.rb ├── tc_hyperlink.rb ├── tc_line_3d_chart.rb ├── tc_line_chart.rb ├── tc_line_series.rb ├── tc_marker.rb ├── tc_named_axis_data.rb ├── tc_num_data.rb ├── tc_num_val.rb ├── tc_one_cell_anchor.rb ├── tc_pic.rb ├── tc_picture_locking.rb ├── tc_pie_3D_chart.rb ├── tc_pie_series.rb ├── tc_scaling.rb ├── tc_scatter_chart.rb ├── tc_scatter_series.rb ├── tc_ser_axis.rb ├── tc_series.rb ├── tc_series_title.rb ├── tc_str_data.rb ├── tc_str_val.rb ├── tc_title.rb ├── tc_two_cell_anchor.rb ├── tc_val_axis.rb ├── tc_view_3D.rb ├── tc_vml_drawing.rb └── tc_vml_shape.rb ├── profile.rb ├── rels ├── tc_relationship.rb └── tc_relationships.rb ├── stylesheet ├── tc_border.rb ├── tc_border_pr.rb ├── tc_cell_alignment.rb ├── tc_cell_protection.rb ├── tc_cell_style.rb ├── tc_color.rb ├── tc_dxf.rb ├── tc_fill.rb ├── tc_font.rb ├── tc_gradient_fill.rb ├── tc_gradient_stop.rb ├── tc_num_fmt.rb ├── tc_pattern_fill.rb ├── tc_styles.rb ├── tc_table_style.rb ├── tc_table_style_element.rb ├── tc_table_styles.rb └── tc_xf.rb ├── tc_axlsx.rb ├── tc_helper.rb ├── tc_package.rb ├── util ├── tc_mime_type_utils.rb ├── tc_serialized_attributes.rb ├── tc_simple_typed_list.rb └── tc_validators.rb └── workbook ├── tc_defined_name.rb ├── tc_shared_strings_table.rb ├── tc_workbook.rb ├── tc_workbook_view.rb └── worksheet ├── auto_filter ├── tc_auto_filter.rb ├── tc_filter_column.rb └── tc_filters.rb ├── tc_break.rb ├── tc_cell.rb ├── tc_cfvo.rb ├── tc_col.rb ├── tc_color_scale.rb ├── tc_comment.rb ├── tc_comments.rb ├── tc_conditional_formatting.rb ├── tc_data_bar.rb ├── tc_data_validation.rb ├── tc_date_time_converter.rb ├── tc_header_footer.rb ├── tc_icon_set.rb ├── tc_outline_pr.rb ├── tc_page_margins.rb ├── tc_page_set_up_pr.rb ├── tc_page_setup.rb ├── tc_pane.rb ├── tc_pivot_table.rb ├── tc_pivot_table_cache_definition.rb ├── tc_print_options.rb ├── tc_protected_range.rb ├── tc_rich_text.rb ├── tc_rich_text_run.rb ├── tc_row.rb ├── tc_selection.rb ├── tc_sheet_calc_pr.rb ├── tc_sheet_format_pr.rb ├── tc_sheet_pr.rb ├── tc_sheet_protection.rb ├── tc_sheet_view.rb ├── tc_table.rb ├── tc_table_style_info.rb ├── tc_worksheet.rb └── tc_worksheet_hyperlink.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/.yardopts -------------------------------------------------------------------------------- /.yardopts_guide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/.yardopts_guide -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/appveyor.yml -------------------------------------------------------------------------------- /axlsx.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/axlsx.gemspec -------------------------------------------------------------------------------- /examples/2010_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/2010_comments.rb -------------------------------------------------------------------------------- /examples/anchor_swapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/anchor_swapping.rb -------------------------------------------------------------------------------- /examples/auto_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/auto_filter.rb -------------------------------------------------------------------------------- /examples/basic_charts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/basic_charts.rb -------------------------------------------------------------------------------- /examples/chart_colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/chart_colors.rb -------------------------------------------------------------------------------- /examples/colored_links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/colored_links.rb -------------------------------------------------------------------------------- /examples/conditional_formatting/example_conditional_formatting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/conditional_formatting/example_conditional_formatting.rb -------------------------------------------------------------------------------- /examples/conditional_formatting/getting_barred.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/conditional_formatting/getting_barred.rb -------------------------------------------------------------------------------- /examples/conditional_formatting/hitting_the_high_notes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/conditional_formatting/hitting_the_high_notes.rb -------------------------------------------------------------------------------- /examples/conditional_formatting/scaled_colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/conditional_formatting/scaled_colors.rb -------------------------------------------------------------------------------- /examples/conditional_formatting/stop_and_go.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/conditional_formatting/stop_and_go.rb -------------------------------------------------------------------------------- /examples/data_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/data_validation.rb -------------------------------------------------------------------------------- /examples/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/example.rb -------------------------------------------------------------------------------- /examples/extractive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/extractive.rb -------------------------------------------------------------------------------- /examples/image1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/image1.gif -------------------------------------------------------------------------------- /examples/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/image1.jpeg -------------------------------------------------------------------------------- /examples/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/image1.jpg -------------------------------------------------------------------------------- /examples/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/image1.png -------------------------------------------------------------------------------- /examples/image1_fake.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ios_preview.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/ios_preview.rb -------------------------------------------------------------------------------- /examples/merge_cells.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/merge_cells.rb -------------------------------------------------------------------------------- /examples/no_grid_with_borders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/no_grid_with_borders.rb -------------------------------------------------------------------------------- /examples/page_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/page_setup.rb -------------------------------------------------------------------------------- /examples/pivot_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/pivot_table.rb -------------------------------------------------------------------------------- /examples/pivot_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/pivot_test.rb -------------------------------------------------------------------------------- /examples/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/sample.png -------------------------------------------------------------------------------- /examples/sheet_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/sheet_protection.rb -------------------------------------------------------------------------------- /examples/skydrive/real_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/skydrive/real_example.rb -------------------------------------------------------------------------------- /examples/split.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/split.rb -------------------------------------------------------------------------------- /examples/styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/styles.rb -------------------------------------------------------------------------------- /examples/underline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/underline.rb -------------------------------------------------------------------------------- /examples/wrap_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/examples/wrap_text.rb -------------------------------------------------------------------------------- /lib/axlsx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx.rb -------------------------------------------------------------------------------- /lib/axlsx/content_type/abstract_content_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/content_type/abstract_content_type.rb -------------------------------------------------------------------------------- /lib/axlsx/content_type/content_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/content_type/content_type.rb -------------------------------------------------------------------------------- /lib/axlsx/content_type/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/content_type/default.rb -------------------------------------------------------------------------------- /lib/axlsx/content_type/override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/content_type/override.rb -------------------------------------------------------------------------------- /lib/axlsx/doc_props/app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/doc_props/app.rb -------------------------------------------------------------------------------- /lib/axlsx/doc_props/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/doc_props/core.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/area_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/area_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/area_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/area_series.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/ax_data_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/ax_data_source.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/axes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/axes.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/axis.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/bar_3D_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/bar_3D_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/bar_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/bar_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/bar_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/bar_series.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/bubble_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/bubble_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/bubble_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/bubble_series.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/cat_axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/cat_axis.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/d_lbls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/d_lbls.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/drawing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/drawing.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/graphic_frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/graphic_frame.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/hyperlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/hyperlink.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/line_3D_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/line_3D_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/line_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/line_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/line_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/line_series.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/marker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/marker.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/num_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/num_data.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/num_data_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/num_data_source.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/num_val.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/num_val.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/one_cell_anchor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/one_cell_anchor.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/pic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/pic.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/picture_locking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/picture_locking.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/pie_3D_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/pie_3D_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/pie_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/pie_series.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/scaling.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/scatter_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/scatter_chart.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/scatter_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/scatter_series.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/ser_axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/ser_axis.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/series.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/series_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/series_title.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/str_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/str_data.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/str_val.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/str_val.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/title.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/two_cell_anchor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/two_cell_anchor.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/val_axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/val_axis.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/view_3D.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/view_3D.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/vml_drawing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/vml_drawing.rb -------------------------------------------------------------------------------- /lib/axlsx/drawing/vml_shape.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/drawing/vml_shape.rb -------------------------------------------------------------------------------- /lib/axlsx/package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/package.rb -------------------------------------------------------------------------------- /lib/axlsx/rels/relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/rels/relationship.rb -------------------------------------------------------------------------------- /lib/axlsx/rels/relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/rels/relationships.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/border.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/border.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/border_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/border_pr.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/cell_alignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/cell_alignment.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/cell_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/cell_protection.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/cell_style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/cell_style.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/color.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/dxf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/dxf.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/fill.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/font.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/gradient_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/gradient_fill.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/gradient_stop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/gradient_stop.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/num_fmt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/num_fmt.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/pattern_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/pattern_fill.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/styles.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/table_style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/table_style.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/table_style_element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/table_style_element.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/table_styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/table_styles.rb -------------------------------------------------------------------------------- /lib/axlsx/stylesheet/xf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/stylesheet/xf.rb -------------------------------------------------------------------------------- /lib/axlsx/util/accessors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/accessors.rb -------------------------------------------------------------------------------- /lib/axlsx/util/constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/constants.rb -------------------------------------------------------------------------------- /lib/axlsx/util/mime_type_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/mime_type_utils.rb -------------------------------------------------------------------------------- /lib/axlsx/util/options_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/options_parser.rb -------------------------------------------------------------------------------- /lib/axlsx/util/parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/parser.rb -------------------------------------------------------------------------------- /lib/axlsx/util/serialized_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/serialized_attributes.rb -------------------------------------------------------------------------------- /lib/axlsx/util/simple_typed_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/simple_typed_list.rb -------------------------------------------------------------------------------- /lib/axlsx/util/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/storage.rb -------------------------------------------------------------------------------- /lib/axlsx/util/validators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/util/validators.rb -------------------------------------------------------------------------------- /lib/axlsx/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/version.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/defined_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/defined_name.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/defined_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/defined_names.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/shared_strings_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/shared_strings_table.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/workbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/workbook.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/workbook_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/workbook_view.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/workbook_views.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/workbook_views.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/auto_filter/auto_filter.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/auto_filter/filter_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/auto_filter/filter_column.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/auto_filter/filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/auto_filter/filters.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/break.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/cell.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/cell_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/cell_serializer.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/cfvo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/cfvo.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/cfvos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/cfvos.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/col.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/col.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/col_breaks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/col_breaks.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/color_scale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/color_scale.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/cols.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/cols.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/comment.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/comments.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/conditional_formatting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/conditional_formatting.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/conditional_formatting_rule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/conditional_formatting_rule.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/conditional_formattings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/conditional_formattings.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/data_bar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/data_bar.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/data_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/data_validation.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/data_validations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/data_validations.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/date_time_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/date_time_converter.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/dimension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/dimension.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/header_footer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/header_footer.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/icon_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/icon_set.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/merged_cells.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/merged_cells.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/outline_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/outline_pr.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/page_margins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/page_margins.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/page_set_up_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/page_set_up_pr.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/page_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/page_setup.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/pane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/pane.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/pivot_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/pivot_table.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/pivot_table_cache_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/pivot_table_cache_definition.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/pivot_tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/pivot_tables.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/print_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/print_options.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/protected_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/protected_range.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/protected_ranges.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/protected_ranges.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/rich_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/rich_text.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/rich_text_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/rich_text_run.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/row.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/row_breaks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/row_breaks.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/selection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/selection.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/sheet_calc_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/sheet_calc_pr.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/sheet_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/sheet_data.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/sheet_format_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/sheet_format_pr.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/sheet_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/sheet_pr.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/sheet_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/sheet_protection.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/sheet_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/sheet_view.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/table.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/table_style_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/table_style_info.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/tables.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/tables.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/worksheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/worksheet.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/worksheet_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/worksheet_comments.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/worksheet_drawing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/worksheet_drawing.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/worksheet_hyperlink.rb -------------------------------------------------------------------------------- /lib/axlsx/workbook/worksheet/worksheet_hyperlinks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/axlsx/workbook/worksheet/worksheet_hyperlinks.rb -------------------------------------------------------------------------------- /lib/schema/dc.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dc.xsd -------------------------------------------------------------------------------- /lib/schema/dcmitype.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dcmitype.xsd -------------------------------------------------------------------------------- /lib/schema/dcterms.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dcterms.xsd -------------------------------------------------------------------------------- /lib/schema/dml-chart.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-chart.xsd -------------------------------------------------------------------------------- /lib/schema/dml-chartDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-chartDrawing.xsd -------------------------------------------------------------------------------- /lib/schema/dml-compatibility.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-compatibility.xsd -------------------------------------------------------------------------------- /lib/schema/dml-diagram.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-diagram.xsd -------------------------------------------------------------------------------- /lib/schema/dml-lockedCanvas.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-lockedCanvas.xsd -------------------------------------------------------------------------------- /lib/schema/dml-main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-main.xsd -------------------------------------------------------------------------------- /lib/schema/dml-picture.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-picture.xsd -------------------------------------------------------------------------------- /lib/schema/dml-spreadsheetDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-spreadsheetDrawing.xsd -------------------------------------------------------------------------------- /lib/schema/dml-wordprocessingDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/dml-wordprocessingDrawing.xsd -------------------------------------------------------------------------------- /lib/schema/opc-contentTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/opc-contentTypes.xsd -------------------------------------------------------------------------------- /lib/schema/opc-coreProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/opc-coreProperties.xsd -------------------------------------------------------------------------------- /lib/schema/opc-digSig.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/opc-digSig.xsd -------------------------------------------------------------------------------- /lib/schema/opc-relationships.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/opc-relationships.xsd -------------------------------------------------------------------------------- /lib/schema/pml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/pml.xsd -------------------------------------------------------------------------------- /lib/schema/shared-additionalCharacteristics.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-additionalCharacteristics.xsd -------------------------------------------------------------------------------- /lib/schema/shared-bibliography.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-bibliography.xsd -------------------------------------------------------------------------------- /lib/schema/shared-commonSimpleTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-commonSimpleTypes.xsd -------------------------------------------------------------------------------- /lib/schema/shared-customXmlDataProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-customXmlDataProperties.xsd -------------------------------------------------------------------------------- /lib/schema/shared-customXmlSchemaProperties.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-customXmlSchemaProperties.xsd -------------------------------------------------------------------------------- /lib/schema/shared-documentPropertiesCustom.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-documentPropertiesCustom.xsd -------------------------------------------------------------------------------- /lib/schema/shared-documentPropertiesExtended.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-documentPropertiesExtended.xsd -------------------------------------------------------------------------------- /lib/schema/shared-documentPropertiesVariantTypes.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-documentPropertiesVariantTypes.xsd -------------------------------------------------------------------------------- /lib/schema/shared-math.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-math.xsd -------------------------------------------------------------------------------- /lib/schema/shared-relationshipReference.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/shared-relationshipReference.xsd -------------------------------------------------------------------------------- /lib/schema/sml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/sml.xsd -------------------------------------------------------------------------------- /lib/schema/vml-main.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/vml-main.xsd -------------------------------------------------------------------------------- /lib/schema/vml-officeDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/vml-officeDrawing.xsd -------------------------------------------------------------------------------- /lib/schema/vml-presentationDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/vml-presentationDrawing.xsd -------------------------------------------------------------------------------- /lib/schema/vml-spreadsheetDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/vml-spreadsheetDrawing.xsd -------------------------------------------------------------------------------- /lib/schema/vml-wordprocessingDrawing.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/vml-wordprocessingDrawing.xsd -------------------------------------------------------------------------------- /lib/schema/wml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/wml.xsd -------------------------------------------------------------------------------- /lib/schema/xml.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/lib/schema/xml.xsd -------------------------------------------------------------------------------- /notes_on_header_footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/notes_on_header_footer.md -------------------------------------------------------------------------------- /rubima.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/rubima.md -------------------------------------------------------------------------------- /test/benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/benchmark.rb -------------------------------------------------------------------------------- /test/content_type/tc_content_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/content_type/tc_content_type.rb -------------------------------------------------------------------------------- /test/content_type/tc_default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/content_type/tc_default.rb -------------------------------------------------------------------------------- /test/content_type/tc_override.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/content_type/tc_override.rb -------------------------------------------------------------------------------- /test/doc_props/tc_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/doc_props/tc_app.rb -------------------------------------------------------------------------------- /test/doc_props/tc_core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/doc_props/tc_core.rb -------------------------------------------------------------------------------- /test/drawing/tc_area_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_area_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_area_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_area_series.rb -------------------------------------------------------------------------------- /test/drawing/tc_axes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_axes.rb -------------------------------------------------------------------------------- /test/drawing/tc_axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_axis.rb -------------------------------------------------------------------------------- /test/drawing/tc_bar_3D_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_bar_3D_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_bar_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_bar_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_bar_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_bar_series.rb -------------------------------------------------------------------------------- /test/drawing/tc_bubble_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_bubble_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_bubble_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_bubble_series.rb -------------------------------------------------------------------------------- /test/drawing/tc_cat_axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_cat_axis.rb -------------------------------------------------------------------------------- /test/drawing/tc_cat_axis_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_cat_axis_data.rb -------------------------------------------------------------------------------- /test/drawing/tc_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_d_lbls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_d_lbls.rb -------------------------------------------------------------------------------- /test/drawing/tc_data_source.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_data_source.rb -------------------------------------------------------------------------------- /test/drawing/tc_drawing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_drawing.rb -------------------------------------------------------------------------------- /test/drawing/tc_graphic_frame.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_graphic_frame.rb -------------------------------------------------------------------------------- /test/drawing/tc_hyperlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_hyperlink.rb -------------------------------------------------------------------------------- /test/drawing/tc_line_3d_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_line_3d_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_line_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_line_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_line_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_line_series.rb -------------------------------------------------------------------------------- /test/drawing/tc_marker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_marker.rb -------------------------------------------------------------------------------- /test/drawing/tc_named_axis_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_named_axis_data.rb -------------------------------------------------------------------------------- /test/drawing/tc_num_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_num_data.rb -------------------------------------------------------------------------------- /test/drawing/tc_num_val.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_num_val.rb -------------------------------------------------------------------------------- /test/drawing/tc_one_cell_anchor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_one_cell_anchor.rb -------------------------------------------------------------------------------- /test/drawing/tc_pic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_pic.rb -------------------------------------------------------------------------------- /test/drawing/tc_picture_locking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_picture_locking.rb -------------------------------------------------------------------------------- /test/drawing/tc_pie_3D_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_pie_3D_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_pie_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_pie_series.rb -------------------------------------------------------------------------------- /test/drawing/tc_scaling.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_scaling.rb -------------------------------------------------------------------------------- /test/drawing/tc_scatter_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_scatter_chart.rb -------------------------------------------------------------------------------- /test/drawing/tc_scatter_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_scatter_series.rb -------------------------------------------------------------------------------- /test/drawing/tc_ser_axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_ser_axis.rb -------------------------------------------------------------------------------- /test/drawing/tc_series.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_series.rb -------------------------------------------------------------------------------- /test/drawing/tc_series_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_series_title.rb -------------------------------------------------------------------------------- /test/drawing/tc_str_data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_str_data.rb -------------------------------------------------------------------------------- /test/drawing/tc_str_val.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_str_val.rb -------------------------------------------------------------------------------- /test/drawing/tc_title.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_title.rb -------------------------------------------------------------------------------- /test/drawing/tc_two_cell_anchor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_two_cell_anchor.rb -------------------------------------------------------------------------------- /test/drawing/tc_val_axis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_val_axis.rb -------------------------------------------------------------------------------- /test/drawing/tc_view_3D.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_view_3D.rb -------------------------------------------------------------------------------- /test/drawing/tc_vml_drawing.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_vml_drawing.rb -------------------------------------------------------------------------------- /test/drawing/tc_vml_shape.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/drawing/tc_vml_shape.rb -------------------------------------------------------------------------------- /test/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/profile.rb -------------------------------------------------------------------------------- /test/rels/tc_relationship.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/rels/tc_relationship.rb -------------------------------------------------------------------------------- /test/rels/tc_relationships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/rels/tc_relationships.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_border.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_border.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_border_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_border_pr.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_cell_alignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_cell_alignment.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_cell_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_cell_protection.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_cell_style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_cell_style.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_color.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_dxf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_dxf.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_fill.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_font.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_font.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_gradient_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_gradient_fill.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_gradient_stop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_gradient_stop.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_num_fmt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_num_fmt.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_pattern_fill.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_pattern_fill.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_styles.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_table_style.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_table_style.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_table_style_element.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_table_style_element.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_table_styles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_table_styles.rb -------------------------------------------------------------------------------- /test/stylesheet/tc_xf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/stylesheet/tc_xf.rb -------------------------------------------------------------------------------- /test/tc_axlsx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/tc_axlsx.rb -------------------------------------------------------------------------------- /test/tc_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/tc_helper.rb -------------------------------------------------------------------------------- /test/tc_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/tc_package.rb -------------------------------------------------------------------------------- /test/util/tc_mime_type_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/util/tc_mime_type_utils.rb -------------------------------------------------------------------------------- /test/util/tc_serialized_attributes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/util/tc_serialized_attributes.rb -------------------------------------------------------------------------------- /test/util/tc_simple_typed_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/util/tc_simple_typed_list.rb -------------------------------------------------------------------------------- /test/util/tc_validators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/util/tc_validators.rb -------------------------------------------------------------------------------- /test/workbook/tc_defined_name.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/tc_defined_name.rb -------------------------------------------------------------------------------- /test/workbook/tc_shared_strings_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/tc_shared_strings_table.rb -------------------------------------------------------------------------------- /test/workbook/tc_workbook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/tc_workbook.rb -------------------------------------------------------------------------------- /test/workbook/tc_workbook_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/tc_workbook_view.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/auto_filter/tc_auto_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/auto_filter/tc_auto_filter.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/auto_filter/tc_filter_column.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/auto_filter/tc_filter_column.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/auto_filter/tc_filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/auto_filter/tc_filters.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_break.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_break.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_cell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_cell.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_cfvo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_cfvo.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_col.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_col.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_color_scale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_color_scale.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_comment.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_comments.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_conditional_formatting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_conditional_formatting.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_data_bar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_data_bar.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_data_validation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_data_validation.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_date_time_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_date_time_converter.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_header_footer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_header_footer.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_icon_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_icon_set.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_outline_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_outline_pr.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_page_margins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_page_margins.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_page_set_up_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_page_set_up_pr.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_page_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_page_setup.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_pane.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_pane.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_pivot_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_pivot_table.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_pivot_table_cache_definition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_pivot_table_cache_definition.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_print_options.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_print_options.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_protected_range.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_protected_range.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_rich_text.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_rich_text.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_rich_text_run.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_rich_text_run.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_row.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_row.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_selection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_selection.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_sheet_calc_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_sheet_calc_pr.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_sheet_format_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_sheet_format_pr.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_sheet_pr.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_sheet_pr.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_sheet_protection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_sheet_protection.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_sheet_view.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_sheet_view.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_table.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_table_style_info.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_table_style_info.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_worksheet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_worksheet.rb -------------------------------------------------------------------------------- /test/workbook/worksheet/tc_worksheet_hyperlink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/randym/axlsx/HEAD/test/workbook/worksheet/tc_worksheet_hyperlink.rb --------------------------------------------------------------------------------