summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-11-02Allow a Row to be passed to merge_cellsMike Dillon
2016-11-02Travis: Test on JRuby 9.1.5.0Olle Jonsson
2016-11-02chore(travis): allow all rbx builds to fail until the rvm binary is working ↵randym
on travis
2016-11-02chore(travis): remove 2.3randym
2016-11-02chore(travis): specify rbx-2 to test travis workaroundrandym
2016-11-02fix(travis): allow rbx to fail and explicitly add 2.3randym
2016-11-02Merge pull request #483 from DatekWireless/masterRandy Morgan (@morgan_randy)
Enable Windows testing on AppVeyor
2016-11-02Merge pull request #496 from olleolleolle/patch-1Randy Morgan (@morgan_randy)
README: Use SVG icon for Travis badge [ci skip]
2016-11-01README: Use SVG icon for Travis badge [ci skip]Olle Jonsson
2016-10-09Fix #472: worksheet name with underscoresato-s
Previously, worksheet name was defined as a serializable_attributes that Axlsx automatically camelize by Axlsx.camel . This cause an unexpected worksheet name convertion. For instance, - "Pie_chart" is converted into "Piechart" - "_example" is converted into "Example" This patch disables an unexpected worksheet name convertion.
2016-10-07set color with Row#color=sato-s
2016-09-06Adjust the Gemfile to work with older Rake on older Ruby 1.xUwe Kubosch
2016-09-06Add appveyor.ymlUwe Kubosch
2016-04-05Escape html in :text typeArkadiy Butermanov
2016-03-23Implement :text cell typeArkadiy Butermanov
2016-02-28Merge pull request #420 from romuloceccon/fix_core_r_schemaRandy Morgan (@morgan_randy)
Fix core rels namespace
2016-02-02Merge pull request #443 from transoceanic2000/summary-position-configRandy Morgan (@morgan_randy)
Support configuration of outline summary position
2016-02-01Add test case for worksheet rendering as requestedBruce Davidson
2016-01-13Remove incorrect argumentBruce Davidson
2016-01-13Fix #440 - allow control of position of outline summary row/columnsBruce Davidson
2015-12-14[ci skip] Fix the documentation for Worksheet#colsRoque Pinel
2015-11-19Merge pull request #426 from ringe/masterRandy Morgan (@morgan_randy)
Update dependencies, remove som code reek
2015-11-18remove some code reekRunar Ingebrigtsen
2015-11-18update nokogiri and htmlentitiesRunar Ingebrigtsen
2015-09-30Fix core rels namespaceRômulo A. Ceccon
The correct core rels namespace is http://schemas.openxmlformats.org/package/..., and not http://schemas.openxmlformats.org/officeDocument/...
2015-09-23Merge pull request #417 from VueOps/escape_special_characters_in_drawing_str_valJonathan Tron
Escape special characters in chart `StrVal`
2015-09-22Escape special characters in chart `StrVal`Clark Cutler
So that, for example, pie charts can render with labels that include an ampersand
2015-08-26Merge pull request #414 from chaimleib/patch-1Jonathan Tron
Fix #360: Viewing docs requires kramdown
2015-08-24#360 Viewing docs requires kramdownChaim-Leib Halbert
2015-08-07Merge pull request #412 from woto/masterJonathan Tron
Labels position on LineChart
2015-08-07Merge branch 'master' of https://github.com/woto/axlsxRuslan Kornev
2015-08-07allow to use d_lbl_pos for LineChartRuslan Kornev
2015-08-05Merge pull request #410 from kernesti/masterJonathan Tron
Add `Chart#title_size`, `ScatterSeries#ln_width` and `Worksheet#is_reversed`
2015-07-29Fix removed jruby-9.0.0.0 in .travis.ymlJonathan Tron
2015-07-29Allow jruby-9.0.0.0 to fail for now and try to fix coverage for jrubyJonathan Tron
2015-07-29Add jruby-9.0.0.0 to test matrixJonathan Tron
2015-07-29Try dropping uneeded nokogiri install stepJonathan Tron
2015-07-29Use the new TravisCI infrastructure for faster testsJonathan Tron
2015-07-29workbook.rb: added possibility to reverse the serialization order of workbookErik Veijola
Signed-off-by: Erik Veijola <[email protected]>
2015-07-29num_val.rb, str_val.rb: added checking for nil values in to_xml_stringErik Veijola
Signed-off-by: Erik Veijola <[email protected]>
2015-07-29Merge pull request #411 from nathos/readme-known-issues-formattingJonathan Tron
Fix list formatting for known issues in README
2015-07-28Fix list formatting for known issues in READMENathan Henderson
2015-07-28scatter_series.rb: added line_width to scatter seriesErik Veijola
Signed-off-by: Erik Veijola <[email protected]>
2015-07-28Merge branch 'title_font_size'Erik Veijola
2015-07-28chart.rb: added method to set font size of Title object in chartErik Veijola
Signed-off-by: Erik Veijola <[email protected]>
2015-07-28title.rb: added text_size to set the font size of the titleErik Veijola
Signed-off-by: Erik Veijola <[email protected]>
2015-07-05Merge branch 'mfrank01-marker_symbols'Jonathan Tron
2015-07-05Fix Axlsx::LineSeries#marker_symbol and add testsJonathan Tron
2015-07-05Merge branch 'marker_symbols' of https://github.com/mfrank01/axlsx into ↵Jonathan Tron
mfrank01-marker_symbols
2015-07-04Add test to confirm control characters are removed from shared stringsThomas Cannon
* Commit f8ef8eb78eb4556676b5770c82493e6e6edf7ec8 fixed the shared strings class to automatically sanitize its serialized XML output to remove any control characters. However, this commit did not include tests that the shared strings actually removed the control characters when serializing to an XML string. * This tests confirms that the string with control characters is added to the shared strings, and that the control characters are removed from the string in question when serialized to XML.