rubyXL 1.2.10 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/Gemfile +14 -10
  2. data/Gemfile.lock +80 -21
  3. data/LICENSE.txt +1 -1
  4. data/README.rdoc +88 -82
  5. data/Rakefile +7 -2
  6. data/VERSION +1 -1
  7. data/lib/rubyXL.rb +13 -7
  8. data/lib/rubyXL/cell.rb +108 -268
  9. data/lib/rubyXL/generic_storage.rb +40 -0
  10. data/lib/rubyXL/objects/border.rb +66 -0
  11. data/lib/rubyXL/objects/calculation_chain.rb +28 -0
  12. data/lib/rubyXL/objects/cell_style.rb +75 -0
  13. data/lib/rubyXL/objects/color.rb +25 -0
  14. data/lib/rubyXL/objects/column_range.rb +74 -0
  15. data/lib/rubyXL/objects/container_nodes.rb +122 -0
  16. data/lib/rubyXL/objects/data_validation.rb +43 -0
  17. data/lib/rubyXL/objects/document_properties.rb +76 -0
  18. data/lib/rubyXL/objects/extensions.rb +36 -0
  19. data/lib/rubyXL/objects/fill.rb +57 -0
  20. data/lib/rubyXL/objects/font.rb +111 -0
  21. data/lib/rubyXL/objects/formula.rb +24 -0
  22. data/lib/rubyXL/objects/ooxml_object.rb +295 -0
  23. data/lib/rubyXL/objects/reference.rb +110 -0
  24. data/lib/rubyXL/objects/relationships.rb +59 -0
  25. data/lib/rubyXL/objects/shared_strings.rb +57 -0
  26. data/lib/rubyXL/objects/sheet_data.rb +149 -0
  27. data/lib/rubyXL/objects/sheet_view.rb +71 -0
  28. data/lib/rubyXL/objects/stylesheet.rb +200 -0
  29. data/lib/rubyXL/objects/text.rb +87 -0
  30. data/lib/rubyXL/objects/theme.rb +64 -0
  31. data/lib/rubyXL/objects/workbook.rb +233 -0
  32. data/lib/rubyXL/objects/worksheet.rb +485 -0
  33. data/lib/rubyXL/parser.rb +78 -442
  34. data/lib/rubyXL/workbook.rb +216 -385
  35. data/lib/rubyXL/worksheet.rb +509 -1062
  36. data/lib/rubyXL/writer/content_types_writer.rb +104 -68
  37. data/lib/rubyXL/writer/core_writer.rb +26 -43
  38. data/lib/rubyXL/writer/generic_writer.rb +43 -0
  39. data/lib/rubyXL/writer/root_rels_writer.rb +11 -19
  40. data/lib/rubyXL/writer/styles_writer.rb +6 -398
  41. data/lib/rubyXL/writer/theme_writer.rb +321 -327
  42. data/lib/rubyXL/writer/workbook_writer.rb +63 -67
  43. data/lib/rubyXL/writer/worksheet_writer.rb +29 -218
  44. data/rdoc/created.rid +39 -0
  45. data/rdoc/fonts.css +167 -0
  46. data/rdoc/fonts/Lato-Light.ttf +0 -0
  47. data/rdoc/fonts/Lato-LightItalic.ttf +0 -0
  48. data/rdoc/fonts/Lato-Regular.ttf +0 -0
  49. data/rdoc/fonts/Lato-RegularItalic.ttf +0 -0
  50. data/rdoc/fonts/SourceCodePro-Bold.ttf +0 -0
  51. data/rdoc/fonts/SourceCodePro-Regular.ttf +0 -0
  52. data/rdoc/images/add.png +0 -0
  53. data/rdoc/images/arrow_up.png +0 -0
  54. data/rdoc/images/brick.png +0 -0
  55. data/rdoc/images/brick_link.png +0 -0
  56. data/rdoc/images/bug.png +0 -0
  57. data/rdoc/images/bullet_black.png +0 -0
  58. data/rdoc/images/bullet_toggle_minus.png +0 -0
  59. data/rdoc/images/bullet_toggle_plus.png +0 -0
  60. data/rdoc/images/date.png +0 -0
  61. data/rdoc/images/delete.png +0 -0
  62. data/rdoc/images/find.png +0 -0
  63. data/rdoc/images/loadingAnimation.gif +0 -0
  64. data/rdoc/images/macFFBgHack.png +0 -0
  65. data/rdoc/images/package.png +0 -0
  66. data/rdoc/images/page_green.png +0 -0
  67. data/rdoc/images/page_white_text.png +0 -0
  68. data/rdoc/images/page_white_width.png +0 -0
  69. data/rdoc/images/plugin.png +0 -0
  70. data/rdoc/images/ruby.png +0 -0
  71. data/rdoc/images/tag_blue.png +0 -0
  72. data/rdoc/images/tag_green.png +0 -0
  73. data/rdoc/images/transparent.png +0 -0
  74. data/rdoc/images/wrench.png +0 -0
  75. data/rdoc/images/wrench_orange.png +0 -0
  76. data/rdoc/images/zoom.png +0 -0
  77. data/rdoc/js/darkfish.js +140 -0
  78. data/rdoc/js/jquery.js +18 -0
  79. data/rdoc/js/navigation.js +142 -0
  80. data/rdoc/js/search.js +109 -0
  81. data/rdoc/js/search_index.js +1 -0
  82. data/rdoc/js/searcher.js +228 -0
  83. data/rdoc/rdoc.css +580 -0
  84. data/rubyXL.gemspec +90 -34
  85. data/spec/lib/cell_spec.rb +29 -59
  86. data/spec/lib/parser_spec.rb +35 -19
  87. data/spec/lib/reference_spec.rb +29 -0
  88. data/spec/lib/stylesheet_spec.rb +29 -0
  89. data/spec/lib/workbook_spec.rb +22 -17
  90. data/spec/lib/worksheet_spec.rb +47 -202
  91. metadata +185 -148
  92. data/lib/.DS_Store +0 -0
  93. data/lib/rubyXL/Hash.rb +0 -60
  94. data/lib/rubyXL/color.rb +0 -14
  95. data/lib/rubyXL/private_class.rb +0 -265
  96. data/lib/rubyXL/writer/app_writer.rb +0 -62
  97. data/lib/rubyXL/writer/calc_chain_writer.rb +0 -33
  98. data/lib/rubyXL/writer/shared_strings_writer.rb +0 -30
  99. data/lib/rubyXL/writer/workbook_rels_writer.rb +0 -59
  100. data/lib/rubyXL/zip.rb +0 -20
  101. data/spec/lib/hash_spec.rb +0 -28
@@ -0,0 +1 @@
1
+ var search_data = {"index":{"searchIndex":["rubyxl","aextensionstoragearea","alignment","alternatecontent","booleannode","booleanvalue","border","bordercontainer","borderedge","break","breaklist","calculationchain","calculationchaincell","calculationproperties","cell","cellstyle","cellstylecontainer","cellstylexfcontainer","cellvalue","cellxfcontainer","color","colorscale","colorscheme","colorset","colors","columnrange","columnranges","conditionalformatvalue","conditionalformatting","conditionalformattingrule","dxf","dxfs","databar","datavalidation","datavalidations","definedname","definednames","documentproperties","extension","extensionstoragearea","externalreference","externalreferences","filesharing","fileversion","fill","fillcontainer","floatnode","floatvalue","font","fontcontainer","fontscheme","formatscheme","formula","genericstorage","gradientfill","headerfootersettings","hyperlink","hyperlinkcontainer","iconset","ignorederror","ignorederrorcontainer","inputcells","integernode","integervalue","legacycell","legacyworkbook","legacyworksheet","mergedcell","mergedcells","numfmt","numberformat","numberformatcontainer","ooxmlobject","outlineproperties","pagemargins","pagesetup","pagesetupproperties","pane","parser","patternfill","phoneticproperties","phoneticrun","printoptions","protectedrange","protectedranges","protection","rid","rawooxml","reference","relationship","richtext","richtextrun","row","runproperties","scenario","scenariocontainer","selection","sharedstringstable","sheet","sheetcalculationproperties","sheetdata","sheetprotection","sheetview","sheetviews","sheets","sortcondition","sortstate","sqref","stop","stringnode","stringvalue","stylesheet","tableparts","tablestyle","tablestyles","text","theme","themeelements","variant","vector","vectorvalue","workbook","workbookproperties","workbookprotection","workbookrelationships","workbookview","workbookviews","worksheet","worksheetdimensions","worksheetformatproperties","worksheetproperties","writer","contenttypeswriter","corewriter","genericwriter","rootrelswriter","styleswriter","themewriter","workbookwriter","worksheetwriter","xf","==()","==()","==()","==()","[]()","[]()","[]()","add()","add_cell()","add_part_title()","add_row()","add_to_zip()","add_to_zip()","add_to_zip()","add_worksheet()","before_write_xml()","before_write_xml()","before_write_xml()","before_write_xml()","before_write_xml()","before_write_xml()","before_write_xml()","binary()","border_bottom()","border_diagonal()","border_left()","border_right()","border_top()","borders()","cell_xfs()","change_border_bottom()","change_border_diagonal()","change_border_left()","change_border_right()","change_border_top()","change_column_bold()","change_column_border_bottom()","change_column_border_diagonal()","change_column_border_left()","change_column_border_right()","change_column_border_top()","change_column_fill()","change_column_font_color()","change_column_font_name()","change_column_font_size()","change_column_horizontal_alignment()","change_column_italics()","change_column_strikethrough()","change_column_underline()","change_column_vertical_alignment()","change_column_width()","change_contents()","change_fill()","change_font_bold()","change_font_color()","change_font_italics()","change_font_name()","change_font_size()","change_font_strikethrough()","change_font_underline()","change_horizontal_alignment()","change_row_bold()","change_row_border_bottom()","change_row_border_diagonal()","change_row_border_left()","change_row_border_right()","change_row_border_top()","change_row_fill()","change_row_font_color()","change_row_font_name()","change_row_font_size()","change_row_height()","change_row_horizontal_alignment()","change_row_italics()","change_row_strikethrough()","change_row_underline()","change_row_vertical_alignment()","change_text_wrap()","change_vertical_alignment()","column()","column=()","cover?()","create_relationship()","data_only()","date_to_num()","define_attribute()","define_child_node()","define_element_name()","delete_cell()","delete_column()","delete_column()","delete_row()","dup()","each()","each()","empty?()","extract_data()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","filepath()","fill_color()","fills()","find()","find_by_format_id()","find_by_rid()","first_col()","first_row()","font_color()","font_name()","font_size()","fonts()","get_column_border_bottom()","get_column_border_diagonal()","get_column_border_left()","get_column_border_right()","get_column_border_top()","get_column_fill()","get_column_font_color()","get_column_font_name()","get_column_font_size()","get_column_horizontal_alignment()","get_column_vertical_alignment()","get_column_width()","get_fill_color()","get_index()","get_name()","get_range()","get_rgb_color()","get_row_border_bottom()","get_row_border_diagonal()","get_row_border_left()","get_row_border_right()","get_row_border_top()","get_row_fill()","get_row_font_color()","get_row_font_name()","get_row_font_size()","get_row_height()","get_row_horizontal_alignment()","get_row_vertical_alignment()","get_size()","get_table()","horizontal_alignment()","include?()","ind2ref()","index_in_collection()","index_in_collection()","insert_cell()","insert_column()","insert_column()","insert_column()","insert_row()","inspect()","inspect()","is_bold()","is_bolded()","is_column_bolded()","is_column_italicized()","is_column_struckthrough()","is_column_underlined()","is_date?()","is_date_format?()","is_italic()","is_italicized()","is_row_bolded()","is_row_italicized()","is_row_struckthrough()","is_row_underlined()","is_strikethrough()","is_struckthrough()","is_underlined()","is_underlined()","last_col()","last_row()","load_dir()","load_file()","merge_cells()","modify_alignment()","modify_border()","modify_fill()","modify_text_wrap()","new()","new()","new()","new()","new()","new()","new()","new()","new()","new()","num_to_date()","obtain_class_variable()","ooxml_object()","ooxml_object()","ooxml_object()","parse()","parse()","parse()","parse()","parse()","parse_file()","raw_value()","raw_value=()","ref2ind()","register_new_fill()","register_new_font()","register_new_xf()","render_xml()","row()","row=()","set_bold()","set_countable()","set_italic()","set_name()","set_namespaces()","set_rgb_color()","set_size()","set_strikethrough()","set_underline()","single_cell?()","text_wrap()","to_s()","to_s()","to_s()","validate_color()","value()","vertical_alignment()","workbook()","write()","write()","write()","write()","write()","write()","write()","write_xml()","write_xml()","write_xml()","readme"],"longSearchIndex":["rubyxl","rubyxl::aextensionstoragearea","rubyxl::alignment","rubyxl::alternatecontent","rubyxl::booleannode","rubyxl::booleanvalue","rubyxl::border","rubyxl::bordercontainer","rubyxl::borderedge","rubyxl::break","rubyxl::breaklist","rubyxl::calculationchain","rubyxl::calculationchaincell","rubyxl::calculationproperties","rubyxl::cell","rubyxl::cellstyle","rubyxl::cellstylecontainer","rubyxl::cellstylexfcontainer","rubyxl::cellvalue","rubyxl::cellxfcontainer","rubyxl::color","rubyxl::colorscale","rubyxl::colorscheme","rubyxl::colorset","rubyxl::colors","rubyxl::columnrange","rubyxl::columnranges","rubyxl::conditionalformatvalue","rubyxl::conditionalformatting","rubyxl::conditionalformattingrule","rubyxl::dxf","rubyxl::dxfs","rubyxl::databar","rubyxl::datavalidation","rubyxl::datavalidations","rubyxl::definedname","rubyxl::definednames","rubyxl::documentproperties","rubyxl::extension","rubyxl::extensionstoragearea","rubyxl::externalreference","rubyxl::externalreferences","rubyxl::filesharing","rubyxl::fileversion","rubyxl::fill","rubyxl::fillcontainer","rubyxl::floatnode","rubyxl::floatvalue","rubyxl::font","rubyxl::fontcontainer","rubyxl::fontscheme","rubyxl::formatscheme","rubyxl::formula","rubyxl::genericstorage","rubyxl::gradientfill","rubyxl::headerfootersettings","rubyxl::hyperlink","rubyxl::hyperlinkcontainer","rubyxl::iconset","rubyxl::ignorederror","rubyxl::ignorederrorcontainer","rubyxl::inputcells","rubyxl::integernode","rubyxl::integervalue","rubyxl::legacycell","rubyxl::legacyworkbook","rubyxl::legacyworksheet","rubyxl::mergedcell","rubyxl::mergedcells","rubyxl::numfmt","rubyxl::numberformat","rubyxl::numberformatcontainer","rubyxl::ooxmlobject","rubyxl::outlineproperties","rubyxl::pagemargins","rubyxl::pagesetup","rubyxl::pagesetupproperties","rubyxl::pane","rubyxl::parser","rubyxl::patternfill","rubyxl::phoneticproperties","rubyxl::phoneticrun","rubyxl::printoptions","rubyxl::protectedrange","rubyxl::protectedranges","rubyxl::protection","rubyxl::rid","rubyxl::rawooxml","rubyxl::reference","rubyxl::relationship","rubyxl::richtext","rubyxl::richtextrun","rubyxl::row","rubyxl::runproperties","rubyxl::scenario","rubyxl::scenariocontainer","rubyxl::selection","rubyxl::sharedstringstable","rubyxl::sheet","rubyxl::sheetcalculationproperties","rubyxl::sheetdata","rubyxl::sheetprotection","rubyxl::sheetview","rubyxl::sheetviews","rubyxl::sheets","rubyxl::sortcondition","rubyxl::sortstate","rubyxl::sqref","rubyxl::stop","rubyxl::stringnode","rubyxl::stringvalue","rubyxl::stylesheet","rubyxl::tableparts","rubyxl::tablestyle","rubyxl::tablestyles","rubyxl::text","rubyxl::theme","rubyxl::themeelements","rubyxl::variant","rubyxl::vector","rubyxl::vectorvalue","rubyxl::workbook","rubyxl::workbookproperties","rubyxl::workbookprotection","rubyxl::workbookrelationships","rubyxl::workbookview","rubyxl::workbookviews","rubyxl::worksheet","rubyxl::worksheetdimensions","rubyxl::worksheetformatproperties","rubyxl::worksheetproperties","rubyxl::writer","rubyxl::writer::contenttypeswriter","rubyxl::writer::corewriter","rubyxl::writer::genericwriter","rubyxl::writer::rootrelswriter","rubyxl::writer::styleswriter","rubyxl::writer::themewriter","rubyxl::writer::workbookwriter","rubyxl::writer::worksheetwriter","rubyxl::xf","rubyxl::borderedge#==()","rubyxl::font#==()","rubyxl::reference#==()","rubyxl::xf#==()","rubyxl::legacyworkbook#[]()","rubyxl::legacyworksheet#[]()","rubyxl::sharedstringstable#[]()","rubyxl::sharedstringstable#add()","rubyxl::legacyworksheet#add_cell()","rubyxl::documentproperties#add_part_title()","rubyxl::legacyworksheet#add_row()","rubyxl::genericstorage#add_to_zip()","rubyxl::ooxmlobject#add_to_zip()","rubyxl::writer::genericwriter#add_to_zip()","rubyxl::legacyworkbook#add_worksheet()","rubyxl::columnranges#before_write_xml()","rubyxl::documentproperties#before_write_xml()","rubyxl::ooxmlobject#before_write_xml()","rubyxl::selection#before_write_xml()","rubyxl::sharedstringstable#before_write_xml()","rubyxl::text#before_write_xml()","rubyxl::workbookrelationships#before_write_xml()","rubyxl::genericstorage#binary()","rubyxl::legacycell#border_bottom()","rubyxl::legacycell#border_diagonal()","rubyxl::legacycell#border_left()","rubyxl::legacycell#border_right()","rubyxl::legacycell#border_top()","rubyxl::legacyworkbook#borders()","rubyxl::legacyworkbook#cell_xfs()","rubyxl::legacycell#change_border_bottom()","rubyxl::legacycell#change_border_diagonal()","rubyxl::legacycell#change_border_left()","rubyxl::legacycell#change_border_right()","rubyxl::legacycell#change_border_top()","rubyxl::legacyworksheet#change_column_bold()","rubyxl::legacyworksheet#change_column_border_bottom()","rubyxl::legacyworksheet#change_column_border_diagonal()","rubyxl::legacyworksheet#change_column_border_left()","rubyxl::legacyworksheet#change_column_border_right()","rubyxl::legacyworksheet#change_column_border_top()","rubyxl::legacyworksheet#change_column_fill()","rubyxl::legacyworksheet#change_column_font_color()","rubyxl::legacyworksheet#change_column_font_name()","rubyxl::legacyworksheet#change_column_font_size()","rubyxl::legacyworksheet#change_column_horizontal_alignment()","rubyxl::legacyworksheet#change_column_italics()","rubyxl::legacyworksheet#change_column_strikethrough()","rubyxl::legacyworksheet#change_column_underline()","rubyxl::legacyworksheet#change_column_vertical_alignment()","rubyxl::legacyworksheet#change_column_width()","rubyxl::legacycell#change_contents()","rubyxl::legacycell#change_fill()","rubyxl::legacycell#change_font_bold()","rubyxl::legacycell#change_font_color()","rubyxl::legacycell#change_font_italics()","rubyxl::legacycell#change_font_name()","rubyxl::legacycell#change_font_size()","rubyxl::legacycell#change_font_strikethrough()","rubyxl::legacycell#change_font_underline()","rubyxl::legacycell#change_horizontal_alignment()","rubyxl::legacyworksheet#change_row_bold()","rubyxl::legacyworksheet#change_row_border_bottom()","rubyxl::legacyworksheet#change_row_border_diagonal()","rubyxl::legacyworksheet#change_row_border_left()","rubyxl::legacyworksheet#change_row_border_right()","rubyxl::legacyworksheet#change_row_border_top()","rubyxl::legacyworksheet#change_row_fill()","rubyxl::legacyworksheet#change_row_font_color()","rubyxl::legacyworksheet#change_row_font_name()","rubyxl::legacyworksheet#change_row_font_size()","rubyxl::legacyworksheet#change_row_height()","rubyxl::legacyworksheet#change_row_horizontal_alignment()","rubyxl::legacyworksheet#change_row_italics()","rubyxl::legacyworksheet#change_row_strikethrough()","rubyxl::legacyworksheet#change_row_underline()","rubyxl::legacyworksheet#change_row_vertical_alignment()","rubyxl::legacycell#change_text_wrap()","rubyxl::legacycell#change_vertical_alignment()","rubyxl::cell#column()","rubyxl::cell#column=()","rubyxl::reference#cover?()","rubyxl::workbookrelationships#create_relationship()","rubyxl::parser#data_only()","rubyxl::legacyworkbook#date_to_num()","rubyxl::ooxmlobject::define_attribute()","rubyxl::ooxmlobject::define_child_node()","rubyxl::ooxmlobject::define_element_name()","rubyxl::legacyworksheet#delete_cell()","rubyxl::columnrange#delete_column()","rubyxl::legacyworksheet#delete_column()","rubyxl::legacyworksheet#delete_row()","rubyxl::ooxmlobject#dup()","rubyxl::legacyworkbook#each()","rubyxl::legacyworksheet#each()","rubyxl::sharedstringstable#empty?()","rubyxl::legacyworksheet#extract_data()","rubyxl::calculationchain::filepath()","rubyxl::documentproperties::filepath()","rubyxl::ooxmlobject::filepath()","rubyxl::sharedstringstable::filepath()","rubyxl::workbookrelationships::filepath()","rubyxl::writer::contenttypeswriter#filepath()","rubyxl::writer::corewriter#filepath()","rubyxl::writer::genericwriter#filepath()","rubyxl::writer::rootrelswriter#filepath()","rubyxl::writer::styleswriter#filepath()","rubyxl::writer::themewriter#filepath()","rubyxl::writer::workbookwriter#filepath()","rubyxl::writer::worksheetwriter#filepath()","rubyxl::legacycell#fill_color()","rubyxl::legacyworkbook#fills()","rubyxl::columnranges#find()","rubyxl::numberformatcontainer#find_by_format_id()","rubyxl::workbookrelationships#find_by_rid()","rubyxl::reference#first_col()","rubyxl::reference#first_row()","rubyxl::legacycell#font_color()","rubyxl::legacycell#font_name()","rubyxl::legacycell#font_size()","rubyxl::legacyworkbook#fonts()","rubyxl::legacyworksheet#get_column_border_bottom()","rubyxl::legacyworksheet#get_column_border_diagonal()","rubyxl::legacyworksheet#get_column_border_left()","rubyxl::legacyworksheet#get_column_border_right()","rubyxl::legacyworksheet#get_column_border_top()","rubyxl::legacyworksheet#get_column_fill()","rubyxl::legacyworksheet#get_column_font_color()","rubyxl::legacyworksheet#get_column_font_name()","rubyxl::legacyworksheet#get_column_font_size()","rubyxl::legacyworksheet#get_column_horizontal_alignment()","rubyxl::legacyworksheet#get_column_vertical_alignment()","rubyxl::legacyworksheet#get_column_width()","rubyxl::legacyworkbook#get_fill_color()","rubyxl::sharedstringstable#get_index()","rubyxl::font#get_name()","rubyxl::columnranges#get_range()","rubyxl::font#get_rgb_color()","rubyxl::legacyworksheet#get_row_border_bottom()","rubyxl::legacyworksheet#get_row_border_diagonal()","rubyxl::legacyworksheet#get_row_border_left()","rubyxl::legacyworksheet#get_row_border_right()","rubyxl::legacyworksheet#get_row_border_top()","rubyxl::legacyworksheet#get_row_fill()","rubyxl::legacyworksheet#get_row_font_color()","rubyxl::legacyworksheet#get_row_font_name()","rubyxl::legacyworksheet#get_row_font_size()","rubyxl::legacyworksheet#get_row_height()","rubyxl::legacyworksheet#get_row_horizontal_alignment()","rubyxl::legacyworksheet#get_row_vertical_alignment()","rubyxl::font#get_size()","rubyxl::legacyworksheet#get_table()","rubyxl::legacycell#horizontal_alignment()","rubyxl::columnrange#include?()","rubyxl::reference::ind2ref()","rubyxl::cell#index_in_collection()","rubyxl::ooxmlobject#index_in_collection()","rubyxl::legacyworksheet#insert_cell()","rubyxl::columnrange#insert_column()","rubyxl::columnranges#insert_column()","rubyxl::legacyworksheet#insert_column()","rubyxl::legacyworksheet#insert_row()","rubyxl::legacycell#inspect()","rubyxl::reference#inspect()","rubyxl::font#is_bold()","rubyxl::legacycell#is_bolded()","rubyxl::legacyworksheet#is_column_bolded()","rubyxl::legacyworksheet#is_column_italicized()","rubyxl::legacyworksheet#is_column_struckthrough()","rubyxl::legacyworksheet#is_column_underlined()","rubyxl::legacycell#is_date?()","rubyxl::numberformat#is_date_format?()","rubyxl::font#is_italic()","rubyxl::legacycell#is_italicized()","rubyxl::legacyworksheet#is_row_bolded()","rubyxl::legacyworksheet#is_row_italicized()","rubyxl::legacyworksheet#is_row_struckthrough()","rubyxl::legacyworksheet#is_row_underlined()","rubyxl::font#is_strikethrough()","rubyxl::legacycell#is_struckthrough()","rubyxl::font#is_underlined()","rubyxl::legacycell#is_underlined()","rubyxl::reference#last_col()","rubyxl::reference#last_row()","rubyxl::genericstorage#load_dir()","rubyxl::genericstorage#load_file()","rubyxl::legacyworksheet#merge_cells()","rubyxl::legacyworkbook#modify_alignment()","rubyxl::legacyworkbook#modify_border()","rubyxl::legacyworkbook#modify_fill()","rubyxl::legacyworkbook#modify_text_wrap()","rubyxl::genericstorage::new()","rubyxl::legacyworkbook::new()","rubyxl::legacyworksheet::new()","rubyxl::ooxmlobject::new()","rubyxl::parser::new()","rubyxl::reference::new()","rubyxl::sharedstringstable::new()","rubyxl::sqref::new()","rubyxl::writer::genericwriter::new()","rubyxl::writer::worksheetwriter::new()","rubyxl::legacyworkbook#num_to_date()","rubyxl::ooxmlobject::obtain_class_variable()","rubyxl::writer::genericwriter#ooxml_object()","rubyxl::writer::styleswriter#ooxml_object()","rubyxl::writer::worksheetwriter#ooxml_object()","rubyxl::extension::parse()","rubyxl::ooxmlobject::parse()","rubyxl::parser#parse()","rubyxl::parser::parse()","rubyxl::rawooxml::parse()","rubyxl::ooxmlobject::parse_file()","rubyxl::cell#raw_value()","rubyxl::cell#raw_value=()","rubyxl::reference::ref2ind()","rubyxl::legacyworkbook#register_new_fill()","rubyxl::legacyworkbook#register_new_font()","rubyxl::legacyworkbook#register_new_xf()","rubyxl::writer::genericwriter#render_xml()","rubyxl::cell#row()","rubyxl::cell#row=()","rubyxl::font#set_bold()","rubyxl::ooxmlobject::set_countable()","rubyxl::font#set_italic()","rubyxl::font#set_name()","rubyxl::ooxmlobject::set_namespaces()","rubyxl::font#set_rgb_color()","rubyxl::font#set_size()","rubyxl::font#set_strikethrough()","rubyxl::font#set_underline()","rubyxl::reference#single_cell?()","rubyxl::legacycell#text_wrap()","rubyxl::reference#to_s()","rubyxl::sqref#to_s()","rubyxl::text#to_s()","rubyxl::color::validate_color()","rubyxl::cell#value()","rubyxl::legacycell#vertical_alignment()","rubyxl::legacycell#workbook()","rubyxl::legacyworkbook#write()","rubyxl::writer::contenttypeswriter#write()","rubyxl::writer::corewriter#write()","rubyxl::writer::genericwriter#write()","rubyxl::writer::rootrelswriter#write()","rubyxl::writer::themewriter#write()","rubyxl::writer::workbookwriter#write()","rubyxl::extension#write_xml()","rubyxl::ooxmlobject#write_xml()","rubyxl::rawooxml#write_xml()",""],"info":[["RubyXL","","RubyXL.html","",""],["RubyXL::AExtensionStorageArea","","RubyXL/AExtensionStorageArea.html","",""],["RubyXL::Alignment","","RubyXL/Alignment.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_alignment-1.html\n"],["RubyXL::AlternateContent","","RubyXL/AlternateContent.html","",""],["RubyXL::BooleanNode","","RubyXL/BooleanNode.html","",""],["RubyXL::BooleanValue","","RubyXL/BooleanValue.html","",""],["RubyXL::Border","","RubyXL/Border.html","",""],["RubyXL::BorderContainer","","RubyXL/BorderContainer.html","",""],["RubyXL::BorderEdge","","RubyXL/BorderEdge.html","",""],["RubyXL::Break","","RubyXL/Break.html","",""],["RubyXL::BreakList","","RubyXL/BreakList.html","",""],["RubyXL::CalculationChain","","RubyXL/CalculationChain.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_calcChain.html\n"],["RubyXL::CalculationChainCell","","RubyXL/CalculationChainCell.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_c-1.html\n"],["RubyXL::CalculationProperties","","RubyXL/CalculationProperties.html","",""],["RubyXL::Cell","","RubyXL/Cell.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_c-2.html\n"],["RubyXL::CellStyle","","RubyXL/CellStyle.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_cellStyle-1.html\n"],["RubyXL::CellStyleContainer","","RubyXL/CellStyleContainer.html","",""],["RubyXL::CellStyleXFContainer","","RubyXL/CellStyleXFContainer.html","",""],["RubyXL::CellValue","","RubyXL/CellValue.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_v-1.html\n"],["RubyXL::CellXFContainer","","RubyXL/CellXFContainer.html","",""],["RubyXL::Color","","RubyXL/Color.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_color-4.html\n"],["RubyXL::ColorScale","","RubyXL/ColorScale.html","",""],["RubyXL::ColorScheme","","RubyXL/ColorScheme.html","",""],["RubyXL::ColorSet","","RubyXL/ColorSet.html","",""],["RubyXL::Colors","","RubyXL/Colors.html","",""],["RubyXL::ColumnRange","","RubyXL/ColumnRange.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_col-1.html\n"],["RubyXL::ColumnRanges","","RubyXL/ColumnRanges.html","",""],["RubyXL::ConditionalFormatValue","","RubyXL/ConditionalFormatValue.html","",""],["RubyXL::ConditionalFormatting","","RubyXL/ConditionalFormatting.html","",""],["RubyXL::ConditionalFormattingRule","","RubyXL/ConditionalFormattingRule.html","",""],["RubyXL::DXF","","RubyXL/DXF.html","",""],["RubyXL::DXFs","","RubyXL/DXFs.html","",""],["RubyXL::DataBar","","RubyXL/DataBar.html","",""],["RubyXL::DataValidation","","RubyXL/DataValidation.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_dataValidation-1.html\n"],["RubyXL::DataValidations","","RubyXL/DataValidations.html","",""],["RubyXL::DefinedName","","RubyXL/DefinedName.html","",""],["RubyXL::DefinedNames","","RubyXL/DefinedNames.html","",""],["RubyXL::DocumentProperties","","RubyXL/DocumentProperties.html","","<p>www.schemacentral.com/sc/ooxml/e-extended-properties_Properties.html\n"],["RubyXL::Extension","","RubyXL/Extension.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_ext-1.html\n<p>www.schemacentral.com/sc/ooxml/e-a_ext-1.html\n"],["RubyXL::ExtensionStorageArea","","RubyXL/ExtensionStorageArea.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_extLst-1.html\n"],["RubyXL::ExternalReference","","RubyXL/ExternalReference.html","",""],["RubyXL::ExternalReferences","","RubyXL/ExternalReferences.html","",""],["RubyXL::FileSharing","","RubyXL/FileSharing.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_fileSharing-1.html\n"],["RubyXL::FileVersion","","RubyXL/FileVersion.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_fileVersion-1.html\n"],["RubyXL::Fill","","RubyXL/Fill.html","",""],["RubyXL::FillContainer","","RubyXL/FillContainer.html","",""],["RubyXL::FloatNode","","RubyXL/FloatNode.html","",""],["RubyXL::FloatValue","","RubyXL/FloatValue.html","",""],["RubyXL::Font","","RubyXL/Font.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_font-1.html\n"],["RubyXL::FontContainer","","RubyXL/FontContainer.html","",""],["RubyXL::FontScheme","","RubyXL/FontScheme.html","",""],["RubyXL::FormatScheme","","RubyXL/FormatScheme.html","",""],["RubyXL::Formula","","RubyXL/Formula.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_f-1.html\n"],["RubyXL::GenericStorage","","RubyXL/GenericStorage.html","",""],["RubyXL::GradientFill","","RubyXL/GradientFill.html","",""],["RubyXL::HeaderFooterSettings","","RubyXL/HeaderFooterSettings.html","",""],["RubyXL::Hyperlink","","RubyXL/Hyperlink.html","",""],["RubyXL::HyperlinkContainer","","RubyXL/HyperlinkContainer.html","",""],["RubyXL::IconSet","","RubyXL/IconSet.html","",""],["RubyXL::IgnoredError","","RubyXL/IgnoredError.html","",""],["RubyXL::IgnoredErrorContainer","","RubyXL/IgnoredErrorContainer.html","",""],["RubyXL::InputCells","","RubyXL/InputCells.html","",""],["RubyXL::IntegerNode","","RubyXL/IntegerNode.html","",""],["RubyXL::IntegerValue","","RubyXL/IntegerValue.html","",""],["RubyXL::LegacyCell","","RubyXL/LegacyCell.html","",""],["RubyXL::LegacyWorkbook","","RubyXL/LegacyWorkbook.html","",""],["RubyXL::LegacyWorksheet","","RubyXL/LegacyWorksheet.html","",""],["RubyXL::MergedCell","","RubyXL/MergedCell.html","",""],["RubyXL::MergedCells","","RubyXL/MergedCells.html","",""],["RubyXL::NumFmt","","RubyXL/NumFmt.html","",""],["RubyXL::NumberFormat","","RubyXL/NumberFormat.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_numFmt-1.html\n"],["RubyXL::NumberFormatContainer","","RubyXL/NumberFormatContainer.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_numFmts-1.html\n"],["RubyXL::OOXMLObject","","RubyXL/OOXMLObject.html","","<p>Parent class for defining OOXML based objects (not unlike Rails’\n<code>ActiveRecord</code>!) Most importantly, provides …\n"],["RubyXL::OutlineProperties","","RubyXL/OutlineProperties.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_outlinePr-1.html\n"],["RubyXL::PageMargins","","RubyXL/PageMargins.html","",""],["RubyXL::PageSetup","","RubyXL/PageSetup.html","",""],["RubyXL::PageSetupProperties","","RubyXL/PageSetupProperties.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_pageSetUpPr-1.html\n"],["RubyXL::Pane","","RubyXL/Pane.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_pane-1.html\n"],["RubyXL::Parser","","RubyXL/Parser.html","",""],["RubyXL::PatternFill","","RubyXL/PatternFill.html","",""],["RubyXL::PhoneticProperties","","RubyXL/PhoneticProperties.html","",""],["RubyXL::PhoneticRun","","RubyXL/PhoneticRun.html","",""],["RubyXL::PrintOptions","","RubyXL/PrintOptions.html","",""],["RubyXL::ProtectedRange","","RubyXL/ProtectedRange.html","",""],["RubyXL::ProtectedRanges","","RubyXL/ProtectedRanges.html","",""],["RubyXL::Protection","","RubyXL/Protection.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_protection-1.html\n"],["RubyXL::RID","","RubyXL/RID.html","",""],["RubyXL::RawOOXML","","RubyXL/RawOOXML.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_ext-1.html\n"],["RubyXL::Reference","","RubyXL/Reference.html","",""],["RubyXL::Relationship","","RubyXL/Relationship.html","",""],["RubyXL::RichText","","RubyXL/RichText.html","",""],["RubyXL::RichTextRun","","RubyXL/RichTextRun.html","",""],["RubyXL::Row","","RubyXL/Row.html","",""],["RubyXL::RunProperties","","RubyXL/RunProperties.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_rPr-1.html\n"],["RubyXL::Scenario","","RubyXL/Scenario.html","",""],["RubyXL::ScenarioContainer","","RubyXL/ScenarioContainer.html","",""],["RubyXL::Selection","","RubyXL/Selection.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_selection-1.html\n"],["RubyXL::SharedStringsTable","","RubyXL/SharedStringsTable.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_sst.html\n"],["RubyXL::Sheet","","RubyXL/Sheet.html","",""],["RubyXL::SheetCalculationProperties","","RubyXL/SheetCalculationProperties.html","",""],["RubyXL::SheetData","","RubyXL/SheetData.html","",""],["RubyXL::SheetProtection","","RubyXL/SheetProtection.html","",""],["RubyXL::SheetView","","RubyXL/SheetView.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_sheetView-1.html\n"],["RubyXL::SheetViews","","RubyXL/SheetViews.html","",""],["RubyXL::Sheets","","RubyXL/Sheets.html","",""],["RubyXL::SortCondition","","RubyXL/SortCondition.html","",""],["RubyXL::SortState","","RubyXL/SortState.html","",""],["RubyXL::Sqref","","RubyXL/Sqref.html","",""],["RubyXL::Stop","","RubyXL/Stop.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_gradientFill-1.html\n"],["RubyXL::StringNode","","RubyXL/StringNode.html","",""],["RubyXL::StringValue","","RubyXL/StringValue.html","",""],["RubyXL::Stylesheet","","RubyXL/Stylesheet.html","",""],["RubyXL::TableParts","","RubyXL/TableParts.html","",""],["RubyXL::TableStyle","","RubyXL/TableStyle.html","",""],["RubyXL::TableStyles","","RubyXL/TableStyles.html","",""],["RubyXL::Text","","RubyXL/Text.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_t-1.html\n"],["RubyXL::Theme","","RubyXL/Theme.html","",""],["RubyXL::ThemeElements","","RubyXL/ThemeElements.html","",""],["RubyXL::Variant","","RubyXL/Variant.html","","<p>www.schemacentral.com/sc/ooxml/e-docPropsVTypes_variant.html\n"],["RubyXL::Vector","","RubyXL/Vector.html","",""],["RubyXL::VectorValue","","RubyXL/VectorValue.html","",""],["RubyXL::Workbook","","RubyXL/Workbook.html","",""],["RubyXL::WorkbookProperties","","RubyXL/WorkbookProperties.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_workbookPr-1.html\n"],["RubyXL::WorkbookProtection","","RubyXL/WorkbookProtection.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_workbookProtection-1.html\n"],["RubyXL::WorkbookRelationships","","RubyXL/WorkbookRelationships.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_calcChain.html\n"],["RubyXL::WorkbookView","","RubyXL/WorkbookView.html","",""],["RubyXL::WorkbookViews","","RubyXL/WorkbookViews.html","",""],["RubyXL::Worksheet","","RubyXL/Worksheet.html","",""],["RubyXL::WorksheetDimensions","","RubyXL/WorksheetDimensions.html","",""],["RubyXL::WorksheetFormatProperties","","RubyXL/WorksheetFormatProperties.html","",""],["RubyXL::WorksheetProperties","","RubyXL/WorksheetProperties.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_sheetPr-3.html\n"],["RubyXL::Writer","","RubyXL/Writer.html","",""],["RubyXL::Writer::ContentTypesWriter","","RubyXL/Writer/ContentTypesWriter.html","",""],["RubyXL::Writer::CoreWriter","","RubyXL/Writer/CoreWriter.html","",""],["RubyXL::Writer::GenericWriter","","RubyXL/Writer/GenericWriter.html","",""],["RubyXL::Writer::RootRelsWriter","","RubyXL/Writer/RootRelsWriter.html","",""],["RubyXL::Writer::StylesWriter","","RubyXL/Writer/StylesWriter.html","",""],["RubyXL::Writer::ThemeWriter","","RubyXL/Writer/ThemeWriter.html","",""],["RubyXL::Writer::WorkbookWriter","","RubyXL/Writer/WorkbookWriter.html","",""],["RubyXL::Writer::WorksheetWriter","","RubyXL/Writer/WorksheetWriter.html","",""],["RubyXL::XF","","RubyXL/XF.html","","<p>www.schemacentral.com/sc/ooxml/e-ssml_xf-1.html\n"],["==","RubyXL::BorderEdge","RubyXL/BorderEdge.html#method-i-3D-3D","(other)",""],["==","RubyXL::Font","RubyXL/Font.html#method-i-3D-3D","(other)",""],["==","RubyXL::Reference","RubyXL/Reference.html#method-i-3D-3D","(other)",""],["==","RubyXL::XF","RubyXL/XF.html#method-i-3D-3D","(other)",""],["[]","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-5B-5D","(ind)","<p>Finds worksheet by its name or numerical index\n"],["[]","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-5B-5D","(row = 0)","<p>allows for easier access to sheet_data\n"],["[]","RubyXL::SharedStringsTable","RubyXL/SharedStringsTable.html#method-i-5B-5D","(index)",""],["add","RubyXL::SharedStringsTable","RubyXL/SharedStringsTable.html#method-i-add","(str, index = nil)",""],["add_cell","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-add_cell","(row = 0, column = 0, data = '', formula = nil, overwrite = true)",""],["add_part_title","RubyXL::DocumentProperties","RubyXL/DocumentProperties.html#method-i-add_part_title","(name)",""],["add_row","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-add_row","(row = 0, params = {})",""],["add_to_zip","RubyXL::GenericStorage","RubyXL/GenericStorage.html#method-i-add_to_zip","(zipfile)",""],["add_to_zip","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-i-add_to_zip","(zipfile)",""],["add_to_zip","RubyXL::Writer::GenericWriter","RubyXL/Writer/GenericWriter.html#method-i-add_to_zip","(zipfile)",""],["add_worksheet","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-add_worksheet","(name = nil)","<p>Create new simple worksheet and add it to the workbook worksheets\n<p>@param [String] The name for the new …\n"],["before_write_xml","RubyXL::ColumnRanges","RubyXL/ColumnRanges.html#method-i-before_write_xml","()",""],["before_write_xml","RubyXL::DocumentProperties","RubyXL/DocumentProperties.html#method-i-before_write_xml","()",""],["before_write_xml","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-i-before_write_xml","()","<p>Subclass provided filter to perform last-minute operations (cleanup, count,\netc.) immediately prior to …\n"],["before_write_xml","RubyXL::Selection","RubyXL/Selection.html#method-i-before_write_xml","()",""],["before_write_xml","RubyXL::SharedStringsTable","RubyXL/SharedStringsTable.html#method-i-before_write_xml","()",""],["before_write_xml","RubyXL::Text","RubyXL/Text.html#method-i-before_write_xml","()",""],["before_write_xml","RubyXL::WorkbookRelationships","RubyXL/WorkbookRelationships.html#method-i-before_write_xml","()",""],["binary","RubyXL::GenericStorage","RubyXL/GenericStorage.html#method-i-binary","()",""],["border_bottom","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-border_bottom","()","<p>returns cell’s bottom border\n"],["border_diagonal","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-border_diagonal","()","<p>returns cell’s diagonal border\n"],["border_left","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-border_left","()","<p>returns cell’s left border\n"],["border_right","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-border_right","()","<p>returns cell’s right border\n"],["border_top","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-border_top","()","<p>returns cell’s top border\n"],["borders","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-borders","()",""],["cell_xfs","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-cell_xfs","()",""],["change_border_bottom","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_border_bottom","(weight='thin')","<p>changes bottom border of cell\n"],["change_border_diagonal","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_border_diagonal","(weight='thin')","<p>changes diagonal border of cell\n"],["change_border_left","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_border_left","(weight='thin')","<p>changes left border of cell\n"],["change_border_right","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_border_right","(weight='thin')","<p>changes right border of cell\n"],["change_border_top","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_border_top","(weight='thin')","<p>changes top border of cell\n"],["change_column_bold","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_bold","(col = 0, bolded = false)",""],["change_column_border_bottom","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_border_bottom","(col=0,weight = 'thin')",""],["change_column_border_diagonal","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_border_diagonal","(col=0,weight = 'thin')",""],["change_column_border_left","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_border_left","(col=0,weight = 'thin')",""],["change_column_border_right","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_border_right","(col=0,weight = 'thin')",""],["change_column_border_top","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_border_top","(col=0,weight = 'thin')",""],["change_column_fill","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_fill","(column_index = 0, color_index='ffffff')",""],["change_column_font_color","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_font_color","(col=0, font_color='000000')","<p>Changes font color of column\n"],["change_column_font_name","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_font_name","(col = 0, font_name = 'Verdana')","<p>Changes font name of column\n"],["change_column_font_size","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_font_size","(col=0, font_size=10)","<p>Changes font size of column\n"],["change_column_horizontal_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_horizontal_alignment","(col=0,alignment='center')",""],["change_column_italics","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_italics","(col = 0, italicized = false)",""],["change_column_strikethrough","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_strikethrough","(col=0, struckthrough=false)",""],["change_column_underline","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_underline","(col = 0, underlined = false)",""],["change_column_vertical_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_vertical_alignment","(col=0,alignment='center')",""],["change_column_width","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_column_width","(column_index = 0, width = 13)",""],["change_contents","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_contents","(data, formula=nil)","<p>changes contents of cell, with formula option\n"],["change_fill","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_fill","(rgb='ffffff')","<p>changes fill color of cell\n"],["change_font_bold","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_font_bold","(bolded=false)","<p>Changes font bold settings of cell\n"],["change_font_color","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_font_color","(font_color='000000')","<p>Changes font color of cell\n"],["change_font_italics","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_font_italics","(italicized=false)","<p>Changes font italics settings of cell\n"],["change_font_name","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_font_name","(new_font_name = 'Verdana')","<p>Changes font name of cell\n"],["change_font_size","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_font_size","(font_size=10)","<p>Changes font size of cell\n"],["change_font_strikethrough","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_font_strikethrough","(struckthrough=false)",""],["change_font_underline","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_font_underline","(underlined=false)","<p>Changes font underline settings of cell\n"],["change_horizontal_alignment","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_horizontal_alignment","(alignment='center')","<p>changes horizontal alignment of cell\n"],["change_row_bold","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_bold","(row = 0, bolded=false)",""],["change_row_border_bottom","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_border_bottom","(row = 0, weight = 'thin')",""],["change_row_border_diagonal","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_border_diagonal","(row = 0, weight = 'thin')",""],["change_row_border_left","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_border_left","(row = 0, weight = 'thin')",""],["change_row_border_right","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_border_right","(row = 0, weight = 'thin')",""],["change_row_border_top","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_border_top","(row = 0, weight = 'thin')",""],["change_row_fill","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_fill","(row_index = 0, rgb = 'ffffff')","<p>changes color of fill in (zer0 indexed) row\n"],["change_row_font_color","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_font_color","(row = 0, font_color='000000')",""],["change_row_font_name","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_font_name","(row = 0, font_name = 'Verdana')",""],["change_row_font_size","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_font_size","(row = 0, font_size=10)",""],["change_row_height","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_height","(row = 0, height=10)",""],["change_row_horizontal_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_horizontal_alignment","(row = 0,alignment='center')",""],["change_row_italics","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_italics","(row = 0, italicized=false)",""],["change_row_strikethrough","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_strikethrough","(row = 0, struckthrough=false)",""],["change_row_underline","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_underline","(row = 0, underlined=false)",""],["change_row_vertical_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-change_row_vertical_alignment","(row = 0,alignment='center')",""],["change_text_wrap","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_text_wrap","(wrap=false)","<p>changes wrap of cell\n"],["change_vertical_alignment","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-change_vertical_alignment","(alignment='center')","<p>changes vertical alignment of cell\n"],["column","RubyXL::Cell","RubyXL/Cell.html#method-i-column","()",""],["column=","RubyXL::Cell","RubyXL/Cell.html#method-i-column-3D","(v)",""],["cover?","RubyXL::Reference","RubyXL/Reference.html#method-i-cover-3F","(other)",""],["create_relationship","RubyXL::WorkbookRelationships","RubyXL/WorkbookRelationships.html#method-i-create_relationship","(target, type)",""],["data_only","RubyXL::Parser","RubyXL/Parser.html#method-i-data_only","()",""],["date_to_num","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-date_to_num","(date)",""],["define_attribute","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-define_attribute","(attr_name, attr_type, extra_params = {})","<p>Defines an attribute of OOXML object.\n<p>Parameters\n<p><code>attribute_name</code> - Name of the element attribute as seen ...\n"],["define_child_node","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-define_child_node","(klass, extra_params = {})",""],["define_element_name","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-define_element_name","(v)",""],["delete_cell","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-delete_cell","(row = 0, col=0, shift=nil)","<p>by default, only sets cell to nil if :left is specified, method will shift\nrow contents to the right …\n"],["delete_column","RubyXL::ColumnRange","RubyXL/ColumnRange.html#method-i-delete_column","(col_index)",""],["delete_column","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-delete_column","(column_index = 0)",""],["delete_row","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-delete_row","(row_index=0)",""],["dup","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-i-dup","()",""],["each","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-each","()",""],["each","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-each","()",""],["empty?","RubyXL::SharedStringsTable","RubyXL/SharedStringsTable.html#method-i-empty-3F","()",""],["extract_data","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-extract_data","(args = {})","<p>returns 2d array of just the cell values (without style or formula\ninformation)\n"],["filepath","RubyXL::CalculationChain","RubyXL/CalculationChain.html#method-c-filepath","()",""],["filepath","RubyXL::DocumentProperties","RubyXL/DocumentProperties.html#method-c-filepath","()",""],["filepath","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-filepath","()",""],["filepath","RubyXL::SharedStringsTable","RubyXL/SharedStringsTable.html#method-c-filepath","()",""],["filepath","RubyXL::WorkbookRelationships","RubyXL/WorkbookRelationships.html#method-c-filepath","()",""],["filepath","RubyXL::Writer::ContentTypesWriter","RubyXL/Writer/ContentTypesWriter.html#method-i-filepath","()",""],["filepath","RubyXL::Writer::CoreWriter","RubyXL/Writer/CoreWriter.html#method-i-filepath","()",""],["filepath","RubyXL::Writer::GenericWriter","RubyXL/Writer/GenericWriter.html#method-i-filepath","()",""],["filepath","RubyXL::Writer::RootRelsWriter","RubyXL/Writer/RootRelsWriter.html#method-i-filepath","()",""],["filepath","RubyXL::Writer::StylesWriter","RubyXL/Writer/StylesWriter.html#method-i-filepath","()",""],["filepath","RubyXL::Writer::ThemeWriter","RubyXL/Writer/ThemeWriter.html#method-i-filepath","()",""],["filepath","RubyXL::Writer::WorkbookWriter","RubyXL/Writer/WorkbookWriter.html#method-i-filepath","()",""],["filepath","RubyXL::Writer::WorksheetWriter","RubyXL/Writer/WorksheetWriter.html#method-i-filepath","()",""],["fill_color","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-fill_color","()","<p>returns cell’s fill color\n"],["fills","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-fills","()",""],["find","RubyXL::ColumnRanges","RubyXL/ColumnRanges.html#method-i-find","(col_index)",""],["find_by_format_id","RubyXL::NumberFormatContainer","RubyXL/NumberFormatContainer.html#method-i-find_by_format_id","(format_id)",""],["find_by_rid","RubyXL::WorkbookRelationships","RubyXL/WorkbookRelationships.html#method-i-find_by_rid","(r_id)",""],["first_col","RubyXL::Reference","RubyXL/Reference.html#method-i-first_col","()",""],["first_row","RubyXL::Reference","RubyXL/Reference.html#method-i-first_row","()",""],["font_color","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-font_color","()",""],["font_name","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-font_name","()",""],["font_size","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-font_size","()",""],["fonts","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-fonts","()",""],["get_column_border_bottom","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_border_bottom","(col=0)",""],["get_column_border_diagonal","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_border_diagonal","(col=0)",""],["get_column_border_left","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_border_left","(col=0)",""],["get_column_border_right","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_border_right","(col=0)",""],["get_column_border_top","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_border_top","(col=0)",""],["get_column_fill","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_fill","(col=0)",""],["get_column_font_color","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_font_color","(col = 0)",""],["get_column_font_name","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_font_name","(col = 0)",""],["get_column_font_size","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_font_size","(col = 0)",""],["get_column_horizontal_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_horizontal_alignment","(col=0)",""],["get_column_vertical_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_vertical_alignment","(col=0)",""],["get_column_width","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_column_width","(column_index = 0)",""],["get_fill_color","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-get_fill_color","(xf)",""],["get_index","RubyXL::SharedStringsTable","RubyXL/SharedStringsTable.html#method-i-get_index","(str, add_if_missing = false)",""],["get_name","RubyXL::Font","RubyXL/Font.html#method-i-get_name","()",""],["get_range","RubyXL::ColumnRanges","RubyXL/ColumnRanges.html#method-i-get_range","(col_index)","<p>Locate an existing column range, make a new one if not found, or split\nexisting column range into multiples. …\n"],["get_rgb_color","RubyXL::Font","RubyXL/Font.html#method-i-get_rgb_color","()",""],["get_row_border_bottom","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_border_bottom","(row = 0)",""],["get_row_border_diagonal","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_border_diagonal","(row = 0)",""],["get_row_border_left","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_border_left","(row = 0)",""],["get_row_border_right","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_border_right","(row = 0)",""],["get_row_border_top","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_border_top","(row = 0)",""],["get_row_fill","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_fill","(row = 0)",""],["get_row_font_color","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_font_color","(row = 0)",""],["get_row_font_name","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_font_name","(row = 0)",""],["get_row_font_size","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_font_size","(row = 0)",""],["get_row_height","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_height","(row = 0)",""],["get_row_horizontal_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_horizontal_alignment","(row = 0)",""],["get_row_vertical_alignment","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_row_vertical_alignment","(row = 0)",""],["get_size","RubyXL::Font","RubyXL/Font.html#method-i-get_size","()",""],["get_table","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-get_table","(headers = [], opts = {})",""],["horizontal_alignment","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-horizontal_alignment","()","<p>returns cell’s horizontal alignment\n"],["include?","RubyXL::ColumnRange","RubyXL/ColumnRange.html#method-i-include-3F","(col_index)",""],["ind2ref","RubyXL::Reference","RubyXL/Reference.html#method-c-ind2ref","(row = 0, col = 0)","<p>Converts <code>row</code> and <code>col</code> zero-based indices to\nExcel-style cell reference (0) A…Z, AA…AZ, BA… …ZZ, …\n"],["index_in_collection","RubyXL::Cell","RubyXL/Cell.html#method-i-index_in_collection","()",""],["index_in_collection","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-i-index_in_collection","()",""],["insert_cell","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-insert_cell","(row = 0, col = 0, data = nil, formula = nil, shift = nil)",""],["insert_column","RubyXL::ColumnRange","RubyXL/ColumnRange.html#method-i-insert_column","(col_index)",""],["insert_column","RubyXL::ColumnRanges","RubyXL/ColumnRanges.html#method-i-insert_column","(col_index)",""],["insert_column","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-insert_column","(column_index = 0)","<p>inserts column at <code>column_index</code>, pushes everything right, takes\nstyles from column to left USE OF THIS …\n"],["insert_row","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-insert_row","(row_index = 0)","\n<pre>Inserts row at row_index, pushes down, copies style from the row above (that's what Excel 2013 does!)</pre>\n"],["inspect","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-inspect","()",""],["inspect","RubyXL::Reference","RubyXL/Reference.html#method-i-inspect","()",""],["is_bold","RubyXL::Font","RubyXL/Font.html#method-i-is_bold","()",""],["is_bolded","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-is_bolded","()","<p>returns if font is bolded\n"],["is_column_bolded","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_column_bolded","(col = 0)",""],["is_column_italicized","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_column_italicized","(col = 0)",""],["is_column_struckthrough","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_column_struckthrough","(col = 0)",""],["is_column_underlined","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_column_underlined","(col = 0)",""],["is_date?","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-is_date-3F","()",""],["is_date_format?","RubyXL::NumberFormat","RubyXL/NumberFormat.html#method-i-is_date_format-3F","()",""],["is_italic","RubyXL::Font","RubyXL/Font.html#method-i-is_italic","()",""],["is_italicized","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-is_italicized","()","<p>returns if font is italicized\n"],["is_row_bolded","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_row_bolded","(row = 0)",""],["is_row_italicized","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_row_italicized","(row = 0)",""],["is_row_struckthrough","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_row_struckthrough","(row = 0)",""],["is_row_underlined","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-is_row_underlined","(row = 0)",""],["is_strikethrough","RubyXL::Font","RubyXL/Font.html#method-i-is_strikethrough","()",""],["is_struckthrough","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-is_struckthrough","()",""],["is_underlined","RubyXL::Font","RubyXL/Font.html#method-i-is_underlined","()",""],["is_underlined","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-is_underlined","()",""],["last_col","RubyXL::Reference","RubyXL/Reference.html#method-i-last_col","()",""],["last_row","RubyXL::Reference","RubyXL/Reference.html#method-i-last_row","()",""],["load_dir","RubyXL::GenericStorage","RubyXL/GenericStorage.html#method-i-load_dir","(root_dir)",""],["load_file","RubyXL::GenericStorage","RubyXL/GenericStorage.html#method-i-load_file","(root_dir, filename)",""],["merge_cells","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-i-merge_cells","(row1 = 0, col1 = 0, row2 = 0, col2 = 0)","<p>merges cells within a rectangular range\n"],["modify_alignment","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-modify_alignment","(style_index, is_horizontal, alignment)",""],["modify_border","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-modify_border","(style_index, direction, weight)",""],["modify_fill","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-modify_fill","(style_index, rgb)",""],["modify_text_wrap","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-modify_text_wrap","(style_index, wrap = false)",""],["new","RubyXL::GenericStorage","RubyXL/GenericStorage.html#method-c-new","(local_dir_path)",""],["new","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-c-new","(worksheets=[], filepath=nil, creator=nil, modifier=nil, created_at=nil, company='', application=APPLICATION, appversion=APPVERSION, date1904=0)",""],["new","RubyXL::LegacyWorksheet","RubyXL/LegacyWorksheet.html#method-c-new","(params = {})",""],["new","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-new","(params = {})",""],["new","RubyXL::Parser","RubyXL/Parser.html#method-c-new","(opts = {})","<p><code>:data_only</code> allows only the sheet data to be parsed, so as to\nspeed up parsing However, using this option ...\n"],["new","RubyXL::Reference","RubyXL/Reference.html#method-c-new","(*params)","<p>RubyXL::Reference.new(row, col) RubyXL::Reference.new(row_from, row_to,\ncol_from, col_to) RubyXL::Reference.new(reference_string) …\n"],["new","RubyXL::SharedStringsTable","RubyXL/SharedStringsTable.html#method-c-new","(*params)",""],["new","RubyXL::Sqref","RubyXL/Sqref.html#method-c-new","(str)",""],["new","RubyXL::Writer::GenericWriter","RubyXL/Writer/GenericWriter.html#method-c-new","(workbook)",""],["new","RubyXL::Writer::WorksheetWriter","RubyXL/Writer/WorksheetWriter.html#method-c-new","(workbook, sheet_index = 0)",""],["num_to_date","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-num_to_date","(num)",""],["obtain_class_variable","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-obtain_class_variable","(var_name, default = {})","<p>Get the value of a [sub]class variable if it exists, or create the\nrespective variable with the passed-in …\n"],["ooxml_object","RubyXL::Writer::GenericWriter","RubyXL/Writer/GenericWriter.html#method-i-ooxml_object","()",""],["ooxml_object","RubyXL::Writer::StylesWriter","RubyXL/Writer/StylesWriter.html#method-i-ooxml_object","()",""],["ooxml_object","RubyXL::Writer::WorksheetWriter","RubyXL/Writer/WorksheetWriter.html#method-i-ooxml_object","()",""],["parse","RubyXL::Extension","RubyXL/Extension.html#method-c-parse","(node)",""],["parse","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-parse","(node)",""],["parse","RubyXL::Parser","RubyXL/Parser.html#method-i-parse","(xl_file_path, opts = {})",""],["parse","RubyXL::Parser","RubyXL/Parser.html#method-c-parse","(file_path, opts = {})",""],["parse","RubyXL::RawOOXML","RubyXL/RawOOXML.html#method-c-parse","(node)",""],["parse_file","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-parse_file","(dirpath)",""],["raw_value","RubyXL::Cell","RubyXL/Cell.html#method-i-raw_value","()",""],["raw_value=","RubyXL::Cell","RubyXL/Cell.html#method-i-raw_value-3D","(v)",""],["ref2ind","RubyXL::Reference","RubyXL/Reference.html#method-c-ref2ind","(str)","<p>Converts Excel-style cell reference to <code>row</code> and\n<code>col</code> zero-based indices.\n"],["register_new_fill","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-register_new_fill","(new_fill, old_xf)",""],["register_new_font","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-register_new_font","(new_font, old_xf)",""],["register_new_xf","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-register_new_xf","(new_xf, old_style_index)",""],["render_xml","RubyXL::Writer::GenericWriter","RubyXL/Writer/GenericWriter.html#method-i-render_xml","()",""],["row","RubyXL::Cell","RubyXL/Cell.html#method-i-row","()",""],["row=","RubyXL::Cell","RubyXL/Cell.html#method-i-row-3D","(v)",""],["set_bold","RubyXL::Font","RubyXL/Font.html#method-i-set_bold","(val)",""],["set_countable","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-set_countable","()",""],["set_italic","RubyXL::Font","RubyXL/Font.html#method-i-set_italic","(val)",""],["set_name","RubyXL::Font","RubyXL/Font.html#method-i-set_name","(val)",""],["set_namespaces","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-c-set_namespaces","(namespace_hash)","<p>Sets the list of namespaces on this object to be added when writing out\nXML. Valid only on top-level …\n"],["set_rgb_color","RubyXL::Font","RubyXL/Font.html#method-i-set_rgb_color","(font_color)","<p>Helper method to modify the font color\n"],["set_size","RubyXL::Font","RubyXL/Font.html#method-i-set_size","(val)",""],["set_strikethrough","RubyXL::Font","RubyXL/Font.html#method-i-set_strikethrough","(val)",""],["set_underline","RubyXL::Font","RubyXL/Font.html#method-i-set_underline","(val)",""],["single_cell?","RubyXL::Reference","RubyXL/Reference.html#method-i-single_cell-3F","()",""],["text_wrap","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-text_wrap","()","<p>returns cell’s wrap\n"],["to_s","RubyXL::Reference","RubyXL/Reference.html#method-i-to_s","()",""],["to_s","RubyXL::Sqref","RubyXL/Sqref.html#method-i-to_s","()",""],["to_s","RubyXL::Text","RubyXL/Text.html#method-i-to_s","()",""],["validate_color","RubyXL::Color","RubyXL/Color.html#method-c-validate_color","(color)","<p>validates hex color code, no ‘#’ allowed\n"],["value","RubyXL::Cell","RubyXL/Cell.html#method-i-value","(args = {})",""],["vertical_alignment","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-vertical_alignment","()","<p>returns cell’s vertical alignment\n"],["workbook","RubyXL::LegacyCell","RubyXL/LegacyCell.html#method-i-workbook","()",""],["write","RubyXL::LegacyWorkbook","RubyXL/LegacyWorkbook.html#method-i-write","(filepath = @filepath)","<p>filepath of xlsx file (including file itself)\n"],["write","RubyXL::Writer::ContentTypesWriter","RubyXL/Writer/ContentTypesWriter.html#method-i-write","()",""],["write","RubyXL::Writer::CoreWriter","RubyXL/Writer/CoreWriter.html#method-i-write","()",""],["write","RubyXL::Writer::GenericWriter","RubyXL/Writer/GenericWriter.html#method-i-write","()",""],["write","RubyXL::Writer::RootRelsWriter","RubyXL/Writer/RootRelsWriter.html#method-i-write","()",""],["write","RubyXL::Writer::ThemeWriter","RubyXL/Writer/ThemeWriter.html#method-i-write","()",""],["write","RubyXL::Writer::WorkbookWriter","RubyXL/Writer/WorkbookWriter.html#method-i-write","()",""],["write_xml","RubyXL::Extension","RubyXL/Extension.html#method-i-write_xml","(xml, node_name_override = nil)",""],["write_xml","RubyXL::OOXMLObject","RubyXL/OOXMLObject.html#method-i-write_xml","(xml = nil, node_name_override = nil)",""],["write_xml","RubyXL::RawOOXML","RubyXL/RawOOXML.html#method-i-write_xml","(xml, node_name_override = nil)",""],["README","","README_rdoc.html","","<p>rubyXL\n<p>To Install:\n\n<pre>gem install rubyXL</pre>\n"]]}}
@@ -0,0 +1,228 @@
1
+ Searcher = function(data) {
2
+ this.data = data;
3
+ this.handlers = [];
4
+ }
5
+
6
+ Searcher.prototype = new function() {
7
+ // search is performed in chunks of 1000 for non-blocking user input
8
+ var CHUNK_SIZE = 1000;
9
+ // do not try to find more than 100 results
10
+ var MAX_RESULTS = 100;
11
+ var huid = 1;
12
+ var suid = 1;
13
+ var runs = 0;
14
+
15
+ this.find = function(query) {
16
+ var queries = splitQuery(query);
17
+ var regexps = buildRegexps(queries);
18
+ var highlighters = buildHilighters(queries);
19
+ var state = { from: 0, pass: 0, limit: MAX_RESULTS, n: suid++};
20
+ var _this = this;
21
+
22
+ this.currentSuid = state.n;
23
+
24
+ if (!query) return;
25
+
26
+ var run = function() {
27
+ // stop current search thread if new search started
28
+ if (state.n != _this.currentSuid) return;
29
+
30
+ var results =
31
+ performSearch(_this.data, regexps, queries, highlighters, state);
32
+ var hasMore = (state.limit > 0 && state.pass < 4);
33
+
34
+ triggerResults.call(_this, results, !hasMore);
35
+ if (hasMore) {
36
+ setTimeout(run, 2);
37
+ }
38
+ runs++;
39
+ };
40
+ runs = 0;
41
+
42
+ // start search thread
43
+ run();
44
+ }
45
+
46
+ /* ----- Events ------ */
47
+ this.ready = function(fn) {
48
+ fn.huid = huid;
49
+ this.handlers.push(fn);
50
+ }
51
+
52
+ /* ----- Utilities ------ */
53
+ function splitQuery(query) {
54
+ return jQuery.grep(query.split(/(\s+|::?|\(\)?)/), function(string) {
55
+ return string.match(/\S/)
56
+ });
57
+ }
58
+
59
+ function buildRegexps(queries) {
60
+ return jQuery.map(queries, function(query) {
61
+ return new RegExp(query.replace(/(.)/g, '([$1])([^$1]*?)'), 'i')
62
+ });
63
+ }
64
+
65
+ function buildHilighters(queries) {
66
+ return jQuery.map(queries, function(query) {
67
+ return jQuery.map(query.split(''), function(l, i) {
68
+ return '\u0001$' + (i*2+1) + '\u0002$' + (i*2+2);
69
+ }).join('');
70
+ });
71
+ }
72
+
73
+ // function longMatchRegexp(index, longIndex, regexps) {
74
+ // for (var i = regexps.length - 1; i >= 0; i--){
75
+ // if (!index.match(regexps[i]) && !longIndex.match(regexps[i])) return false;
76
+ // };
77
+ // return true;
78
+ // }
79
+
80
+
81
+ /* ----- Mathchers ------ */
82
+
83
+ /*
84
+ * This record matches if the index starts with queries[0] and the record
85
+ * matches all of the regexps
86
+ */
87
+ function matchPassBeginning(index, longIndex, queries, regexps) {
88
+ if (index.indexOf(queries[0]) != 0) return false;
89
+ for (var i=1, l = regexps.length; i < l; i++) {
90
+ if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
91
+ return false;
92
+ };
93
+ return true;
94
+ }
95
+
96
+ /*
97
+ * This record matches if the longIndex starts with queries[0] and the
98
+ * longIndex matches all of the regexps
99
+ */
100
+ function matchPassLongIndex(index, longIndex, queries, regexps) {
101
+ if (longIndex.indexOf(queries[0]) != 0) return false;
102
+ for (var i=1, l = regexps.length; i < l; i++) {
103
+ if (!longIndex.match(regexps[i]))
104
+ return false;
105
+ };
106
+ return true;
107
+ }
108
+
109
+ /*
110
+ * This record matches if the index contains queries[0] and the record
111
+ * matches all of the regexps
112
+ */
113
+ function matchPassContains(index, longIndex, queries, regexps) {
114
+ if (index.indexOf(queries[0]) == -1) return false;
115
+ for (var i=1, l = regexps.length; i < l; i++) {
116
+ if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
117
+ return false;
118
+ };
119
+ return true;
120
+ }
121
+
122
+ /*
123
+ * This record matches if regexps[0] matches the index and the record
124
+ * matches all of the regexps
125
+ */
126
+ function matchPassRegexp(index, longIndex, queries, regexps) {
127
+ if (!index.match(regexps[0])) return false;
128
+ for (var i=1, l = regexps.length; i < l; i++) {
129
+ if (!index.match(regexps[i]) && !longIndex.match(regexps[i]))
130
+ return false;
131
+ };
132
+ return true;
133
+ }
134
+
135
+
136
+ /* ----- Highlighters ------ */
137
+ function highlightRegexp(info, queries, regexps, highlighters) {
138
+ var result = createResult(info);
139
+ for (var i=0, l = regexps.length; i < l; i++) {
140
+ result.title = result.title.replace(regexps[i], highlighters[i]);
141
+ result.namespace = result.namespace.replace(regexps[i], highlighters[i]);
142
+ };
143
+ return result;
144
+ }
145
+
146
+ function hltSubstring(string, pos, length) {
147
+ return string.substring(0, pos) + '\u0001' + string.substring(pos, pos + length) + '\u0002' + string.substring(pos + length);
148
+ }
149
+
150
+ function highlightQuery(info, queries, regexps, highlighters) {
151
+ var result = createResult(info);
152
+ var pos = 0;
153
+ var lcTitle = result.title.toLowerCase();
154
+
155
+ pos = lcTitle.indexOf(queries[0]);
156
+ if (pos != -1) {
157
+ result.title = hltSubstring(result.title, pos, queries[0].length);
158
+ }
159
+
160
+ result.namespace = result.namespace.replace(regexps[0], highlighters[0]);
161
+ for (var i=1, l = regexps.length; i < l; i++) {
162
+ result.title = result.title.replace(regexps[i], highlighters[i]);
163
+ result.namespace = result.namespace.replace(regexps[i], highlighters[i]);
164
+ };
165
+ return result;
166
+ }
167
+
168
+ function createResult(info) {
169
+ var result = {};
170
+ result.title = info[0];
171
+ result.namespace = info[1];
172
+ result.path = info[2];
173
+ result.params = info[3];
174
+ result.snippet = info[4];
175
+ return result;
176
+ }
177
+
178
+ /* ----- Searching ------ */
179
+ function performSearch(data, regexps, queries, highlighters, state) {
180
+ var searchIndex = data.searchIndex;
181
+ var longSearchIndex = data.longSearchIndex;
182
+ var info = data.info;
183
+ var result = [];
184
+ var i = state.from;
185
+ var l = searchIndex.length;
186
+ var togo = CHUNK_SIZE;
187
+ var matchFunc, hltFunc;
188
+
189
+ while (state.pass < 4 && state.limit > 0 && togo > 0) {
190
+ if (state.pass == 0) {
191
+ matchFunc = matchPassBeginning;
192
+ hltFunc = highlightQuery;
193
+ } else if (state.pass == 1) {
194
+ matchFunc = matchPassLongIndex;
195
+ hltFunc = highlightQuery;
196
+ } else if (state.pass == 2) {
197
+ matchFunc = matchPassContains;
198
+ hltFunc = highlightQuery;
199
+ } else if (state.pass == 3) {
200
+ matchFunc = matchPassRegexp;
201
+ hltFunc = highlightRegexp;
202
+ }
203
+
204
+ for (; togo > 0 && i < l && state.limit > 0; i++, togo--) {
205
+ if (info[i].n == state.n) continue;
206
+ if (matchFunc(searchIndex[i], longSearchIndex[i], queries, regexps)) {
207
+ info[i].n = state.n;
208
+ result.push(hltFunc(info[i], queries, regexps, highlighters));
209
+ state.limit--;
210
+ }
211
+ };
212
+ if (searchIndex.length <= i) {
213
+ state.pass++;
214
+ i = state.from = 0;
215
+ } else {
216
+ state.from = i;
217
+ }
218
+ }
219
+ return result;
220
+ }
221
+
222
+ function triggerResults(results, isLast) {
223
+ jQuery.each(this.handlers, function(i, fn) {
224
+ fn.call(this, results, isLast)
225
+ })
226
+ }
227
+ }
228
+
data/rdoc/rdoc.css ADDED
@@ -0,0 +1,580 @@
1
+ /*
2
+ * "Darkfish" Rdoc CSS
3
+ * $Id: rdoc.css 54 2009-01-27 01:09:48Z deveiant $
4
+ *
5
+ * Author: Michael Granger <ged@FaerieMUD.org>
6
+ *
7
+ */
8
+
9
+ /* vim: ft=css et sw=2 ts=2 sts=2 */
10
+ /* Base Green is: #6C8C22 */
11
+
12
+ * { padding: 0; margin: 0; }
13
+
14
+ body {
15
+ background: #fafafa;
16
+ font-family: Lato, sans-serif;
17
+ font-weight: 300;
18
+ }
19
+
20
+ h1 span,
21
+ h2 span,
22
+ h3 span,
23
+ h4 span,
24
+ h5 span,
25
+ h6 span {
26
+ display: none;
27
+ padding-left: 1em;
28
+ font-size: 10px;
29
+ vertical-align: super;
30
+ }
31
+
32
+ h1:hover span,
33
+ h2:hover span,
34
+ h3:hover span,
35
+ h4:hover span,
36
+ h5:hover span,
37
+ h6:hover span {
38
+ display: inline;
39
+ }
40
+
41
+ :link,
42
+ :visited {
43
+ color: #6C8C22;
44
+ text-decoration: none;
45
+ }
46
+
47
+ :link:hover,
48
+ :visited:hover {
49
+ border-bottom: 1px dotted #6C8C22;
50
+ }
51
+
52
+ code,
53
+ pre {
54
+ font-family: "Source Code Pro", Monaco, monospace;
55
+ }
56
+
57
+ /* @group Generic Classes */
58
+
59
+ .initially-hidden {
60
+ display: none;
61
+ }
62
+
63
+ #search-field {
64
+ width: 98%;
65
+ background: white;
66
+ border: none;
67
+ height: 1.5em;
68
+ -webkit-border-radius: 4px;
69
+ -moz-border-radius: 4px;
70
+ border-radius: 4px;
71
+ text-align: left;
72
+ }
73
+ #search-field:focus {
74
+ background: #f1edba;
75
+ }
76
+ #search-field:-moz-placeholder,
77
+ #search-field::-webkit-input-placeholder {
78
+ font-weight: bold;
79
+ color: #666;
80
+ }
81
+
82
+ .missing-docs {
83
+ font-size: 120%;
84
+ background: white url(images/wrench_orange.png) no-repeat 4px center;
85
+ color: #ccc;
86
+ line-height: 2em;
87
+ border: 1px solid #d00;
88
+ opacity: 1;
89
+ padding-left: 20px;
90
+ text-indent: 24px;
91
+ letter-spacing: 3px;
92
+ font-weight: bold;
93
+ -webkit-border-radius: 5px;
94
+ -moz-border-radius: 5px;
95
+ }
96
+
97
+ .target-section {
98
+ border: 2px solid #dcce90;
99
+ border-left-width: 8px;
100
+ padding: 0 1em;
101
+ background: #fff3c2;
102
+ }
103
+
104
+ /* @end */
105
+
106
+ /* @group Index Page, Standalone file pages */
107
+ .table-of-contents ul {
108
+ margin: 1em;
109
+ list-style: none;
110
+ }
111
+
112
+ .table-of-contents ul ul {
113
+ margin-top: 0.25em;
114
+ }
115
+
116
+ .table-of-contents ul :link,
117
+ .table-of-contents ul :visited {
118
+ font-size: 16px;
119
+ }
120
+
121
+ .table-of-contents li {
122
+ margin-bottom: 0.25em;
123
+ }
124
+
125
+ .table-of-contents li .toc-toggle {
126
+ width: 16px;
127
+ height: 16px;
128
+ background: url(images/add.png) no-repeat;
129
+ }
130
+
131
+ .table-of-contents li .toc-toggle.open {
132
+ background: url(images/delete.png) no-repeat;
133
+ }
134
+
135
+ /* @end */
136
+
137
+ /* @group Top-Level Structure */
138
+
139
+ nav {
140
+ float: left;
141
+ width: 260px;
142
+ font-family: Helvetica, sans-serif;
143
+ font-size: 14px;
144
+ }
145
+
146
+ main {
147
+ display: block;
148
+ margin: 0 2em 5em 260px;
149
+ padding-left: 20px;
150
+ min-width: 340px;
151
+ font-size: 16px;
152
+ }
153
+
154
+ main h1,
155
+ main h2,
156
+ main h3,
157
+ main h4,
158
+ main h5,
159
+ main h6 {
160
+ font-family: Helvetica, sans-serif;
161
+ }
162
+
163
+ .table-of-contents main {
164
+ margin-left: 2em;
165
+ }
166
+
167
+ #validator-badges {
168
+ clear: both;
169
+ margin: 1em 1em 2em;
170
+ font-size: smaller;
171
+ }
172
+
173
+ /* @end */
174
+
175
+ /* @group navigation */
176
+ nav {
177
+ margin-bottom: 1em;
178
+ }
179
+
180
+ nav .nav-section {
181
+ margin-top: 2em;
182
+ border-top: 2px solid #aaa;
183
+ font-size: 90%;
184
+ overflow: hidden;
185
+ }
186
+
187
+ nav h2 {
188
+ margin: 0;
189
+ padding: 2px 8px 2px 8px;
190
+ background-color: #e8e8e8;
191
+ color: #555;
192
+ font-size: 125%;
193
+ text-align: center;
194
+ }
195
+
196
+ nav h3,
197
+ #table-of-contents-navigation {
198
+ margin: 0;
199
+ padding: 2px 8px 2px 8px;
200
+ text-align: right;
201
+ background-color: #e8e8e8;
202
+ color: #555;
203
+ }
204
+
205
+ nav ul,
206
+ nav dl,
207
+ nav p {
208
+ padding: 4px 8px 0;
209
+ list-style: none;
210
+ }
211
+
212
+ #project-navigation .nav-section {
213
+ margin: 0;
214
+ border-top: 0;
215
+ }
216
+
217
+ #home-section h2 {
218
+ text-align: center;
219
+ }
220
+
221
+ #table-of-contents-navigation {
222
+ font-size: 1.2em;
223
+ font-weight: bold;
224
+ text-align: center;
225
+ }
226
+
227
+ #search-section {
228
+ margin-top: 0;
229
+ border-top: 0;
230
+ }
231
+
232
+ #search-field-wrapper {
233
+ border-top: 1px solid #aaa;
234
+ border-bottom: 1px solid #aaa;
235
+ padding: 3px 8px;
236
+ background-color: #e8e8e8;
237
+ color: #555;
238
+ }
239
+
240
+ ul.link-list li {
241
+ white-space: nowrap;
242
+ line-height: 1.4em;
243
+ }
244
+
245
+ ul.link-list .type {
246
+ font-size: 8px;
247
+ text-transform: uppercase;
248
+ color: white;
249
+ background: #969696;
250
+ padding: 2px 4px;
251
+ -webkit-border-radius: 5px;
252
+ }
253
+
254
+ .calls-super {
255
+ background: url(images/arrow_up.png) no-repeat right center;
256
+ }
257
+
258
+ /* @end */
259
+
260
+ /* @group Documentation Section */
261
+ main {
262
+ color: #333;
263
+ }
264
+
265
+ main > h1:first-child,
266
+ main > h2:first-child,
267
+ main > h3:first-child,
268
+ main > h4:first-child,
269
+ main > h5:first-child,
270
+ main > h6:first-child {
271
+ margin-top: 0px;
272
+ }
273
+
274
+ main sup {
275
+ vertical-align: super;
276
+ font-size: 0.8em;
277
+ }
278
+
279
+ /* The heading with the class name */
280
+ main h1[class] {
281
+ margin-top: 0;
282
+ margin-bottom: 1em;
283
+ font-size: 2em;
284
+ color: #6C8C22;
285
+ }
286
+
287
+ main h1 {
288
+ margin: 2em 0 0.5em;
289
+ font-size: 1.7em;
290
+ }
291
+
292
+ main h2 {
293
+ margin: 2em 0 0.5em;
294
+ font-size: 1.5em;
295
+ }
296
+
297
+ main h3 {
298
+ margin: 2em 0 0.5em;
299
+ font-size: 1.2em;
300
+ }
301
+
302
+ main h4 {
303
+ margin: 2em 0 0.5em;
304
+ font-size: 1.1em;
305
+ }
306
+
307
+ main h5 {
308
+ margin: 2em 0 0.5em;
309
+ font-size: 1em;
310
+ }
311
+
312
+ main h6 {
313
+ margin: 2em 0 0.5em;
314
+ font-size: 1em;
315
+ }
316
+
317
+ main p {
318
+ margin: 0 0 0.5em;
319
+ line-height: 1.4em;
320
+ }
321
+
322
+ main pre {
323
+ margin: 1.2em 0.5em;
324
+ padding: 1em;
325
+ font-size: 0.8em;
326
+ }
327
+
328
+ main hr {
329
+ margin: 1.5em 1em;
330
+ border: 2px solid #ddd;
331
+ }
332
+
333
+ main blockquote {
334
+ margin: 0 2em 1.2em 1.2em;
335
+ padding-left: 0.5em;
336
+ border-left: 2px solid #ddd;
337
+ }
338
+
339
+ main ol,
340
+ main ul {
341
+ margin: 1em 2em;
342
+ }
343
+
344
+ main li > p {
345
+ margin-bottom: 0.5em;
346
+ }
347
+
348
+ main dl {
349
+ margin: 1em 0.5em;
350
+ }
351
+
352
+ main dt {
353
+ margin-bottom: 0.5em;
354
+ font-weight: bold;
355
+ }
356
+
357
+ main dd {
358
+ margin: 0 1em 1em 0.5em;
359
+ }
360
+
361
+ main header h2 {
362
+ margin-top: 2em;
363
+ border-width: 0;
364
+ border-top: 4px solid #bbb;
365
+ font-size: 130%;
366
+ }
367
+
368
+ main header h3 {
369
+ margin: 2em 0 1.5em;
370
+ border-width: 0;
371
+ border-top: 3px solid #bbb;
372
+ font-size: 120%;
373
+ }
374
+
375
+ .documentation-section-title {
376
+ position: relative;
377
+ }
378
+ .documentation-section-title .section-click-top {
379
+ position: absolute;
380
+ top: 6px;
381
+ left: 12px;
382
+ font-size: 10px;
383
+ color: #9b9877;
384
+ visibility: hidden;
385
+ padding-left: 0.5px;
386
+ }
387
+
388
+ .documentation-section-title:hover .section-click-top {
389
+ visibility: visible;
390
+ }
391
+
392
+ .constants-list > dl {
393
+ margin: 1em 0 2em;
394
+ border: 0;
395
+ }
396
+
397
+ .constants-list > dl dt {
398
+ margin-bottom: 0.75em;
399
+ padding-left: 0;
400
+ font-family: "Source Code Pro", Monaco, monospace;
401
+ font-size: 110%;
402
+ }
403
+
404
+ .constants-list > dl dt a {
405
+ color: inherit;
406
+ }
407
+
408
+ .constants-list > dl dd {
409
+ margin: 0 0 2em 0;
410
+ padding: 0;
411
+ color: #666;
412
+ }
413
+
414
+ .documentation-section h2 {
415
+ position: relative;
416
+ }
417
+
418
+ .documentation-section h2 a {
419
+ position: absolute;
420
+ top: 8px;
421
+ right: 10px;
422
+ font-size: 12px;
423
+ color: #9b9877;
424
+ visibility: hidden;
425
+ }
426
+
427
+ .documentation-section h2:hover a {
428
+ visibility: visible;
429
+ }
430
+
431
+ /* @group Method Details */
432
+
433
+ main .method-source-code {
434
+ display: none;
435
+ }
436
+
437
+ main .method-description .method-calls-super {
438
+ color: #333;
439
+ font-weight: bold;
440
+ }
441
+
442
+ main .method-detail {
443
+ margin-bottom: 2.5em;
444
+ cursor: pointer;
445
+ }
446
+
447
+ main .method-detail:target {
448
+ margin-left: -10px;
449
+ border-left: 10px solid #f1edba;
450
+ }
451
+
452
+ main .method-heading {
453
+ position: relative;
454
+ font-family: "Source Code Pro", Monaco, monospace;
455
+ font-size: 110%;
456
+ font-weight: bold;
457
+ color: #333;
458
+ }
459
+ main .method-heading :link,
460
+ main .method-heading :visited {
461
+ color: inherit;
462
+ }
463
+ main .method-click-advice {
464
+ position: absolute;
465
+ top: 2px;
466
+ right: 5px;
467
+ font-size: 12px;
468
+ color: #9b9877;
469
+ visibility: hidden;
470
+ padding-right: 20px;
471
+ line-height: 20px;
472
+ background: url(images/zoom.png) no-repeat right top;
473
+ }
474
+ main .method-heading:hover .method-click-advice {
475
+ visibility: visible;
476
+ }
477
+
478
+ main .method-alias .method-heading {
479
+ color: #666;
480
+ }
481
+
482
+ main .method-description,
483
+ main .aliases {
484
+ margin-top: 0.75em;
485
+ color: #333;
486
+ }
487
+
488
+ main .aliases {
489
+ padding-top: 4px;
490
+ font-style: italic;
491
+ cursor: default;
492
+ }
493
+ main .method-description ul {
494
+ margin-left: 1.5em;
495
+ }
496
+
497
+ main #attribute-method-details .method-detail:hover {
498
+ background-color: transparent;
499
+ cursor: default;
500
+ }
501
+ main .attribute-access-type {
502
+ text-transform: uppercase;
503
+ padding: 0 1em;
504
+ }
505
+ /* @end */
506
+
507
+ /* @end */
508
+
509
+ /* @group Source Code */
510
+
511
+ pre {
512
+ margin: 0.5em 0;
513
+ border: 1px dashed #999;
514
+ padding: 0.5em;
515
+ background: #262626;
516
+ color: white;
517
+ overflow: auto;
518
+ }
519
+
520
+ .ruby-constant { color: #7fffd4; background: transparent; }
521
+ .ruby-keyword { color: #00ffff; background: transparent; }
522
+ .ruby-ivar { color: #eedd82; background: transparent; }
523
+ .ruby-operator { color: #00ffee; background: transparent; }
524
+ .ruby-identifier { color: #ffdead; background: transparent; }
525
+ .ruby-node { color: #ffa07a; background: transparent; }
526
+ .ruby-comment { color: #dc0000; background: transparent; }
527
+ .ruby-regexp { color: #ffa07a; background: transparent; }
528
+ .ruby-value { color: #7fffd4; background: transparent; }
529
+
530
+ /* @end */
531
+
532
+
533
+ /* @group search results */
534
+ #search-results {
535
+ font-family: Lato, sans-serif;
536
+ font-weight: 300;
537
+ }
538
+
539
+ #search-results .search-match {
540
+ font-family: Helvetica, sans-serif;
541
+ font-weight: normal;
542
+ }
543
+
544
+ #search-results .search-selected {
545
+ background: #e8e8e8;
546
+ border-bottom: 1px solid transparent;
547
+ }
548
+
549
+ #search-results li {
550
+ list-style: none;
551
+ border-bottom: 1px solid #aaa;
552
+ margin-bottom: 0.5em;
553
+ }
554
+
555
+ #search-results li:last-child {
556
+ border-bottom: none;
557
+ margin-bottom: 0;
558
+ }
559
+
560
+ #search-results li p {
561
+ padding: 0;
562
+ margin: 0.5em;
563
+ }
564
+
565
+ #search-results .search-namespace {
566
+ font-weight: bold;
567
+ }
568
+
569
+ #search-results li em {
570
+ background: yellow;
571
+ font-style: normal;
572
+ }
573
+
574
+ #search-results pre {
575
+ margin: 0.5em;
576
+ font-family: "Source Code Pro", Monaco, monospace;
577
+ }
578
+
579
+ /* @end */
580
+