summaryrefslogtreecommitdiffhomepage
path: root/test/workbook/worksheet/tc_row.rb
AgeCommit message (Collapse)Author
2023-05-22Use Ruby 1.9 hash syntax (non-production code)Geremia Taglialatela
2023-05-04Fix tests / code to work with frozen string literalsPaul Kmiec
2023-05-04Enable Style/FrozenStringLiteralComment and autocorrectPaul Kmiec
2023-05-03Fix Style/RedundantFileExtensionInRequire offenseGeremia Taglialatela
2023-05-03Add RuboCop MinitestGeremia Taglialatela
2023-04-13Merge branch 'master' into escape-formulas-improvementJohnny Shields
2023-04-08Fix space-related offensesGeremia Taglialatela
- Layout/SpaceAfterComma - Layout/SpaceAroundEqualsInParameterDefault - Layout/SpaceAroundOperators - Layout/SpaceBeforeBlockBraces - Layout/SpaceInsideBlockBraces - Layout/SpaceInsideHashLiteralBraces - Layout/SpaceInsideParens
2023-04-08Fix EmptyLines related offensesGeremia Taglialatela
2023-04-06Fix Layout/EmptyLines offensesGeremia Taglialatela
``` rubocop --only Layout/EmptyLines -a ```
2023-04-06Remove Layout/TrailingWhitespace offensesGeremia Taglialatela
``` rubocop --only Layout/TrailingWhitespace -a ```
2023-03-31Add settings for escape_formulas at global, workbook, worksheet, row and ↵johnnyshields
cell levels.
2021-03-27Fix testStefan
The styles need to actually exist, otherwise the test fails with “ArgumentError: Invalid cellXfs id”.
2021-03-19Implement :offset option for worksheet#add_row (#87)Agustin Gomez
2019-12-20Add option to protect against formula injection attacks (#34)Gabriel Morcote
Caxlsx used to treat cell values beginning with an equal sign as formula by default. This can be dangerous if the input data is user generated or coming from other untrusted sources (see https://www.owasp.org/index.php/CSV_Injection for details). This commit adds a new option `escape_formulas` that can be used with `#add_row` and on instances of `Cell`. If set to true, cell values beginning with an equal sign are treated as normal strings (and will be displayed literally by Excel and co.)
2016-11-14set color with Row#color=sato-s
2014-04-04Fix boolean values so the output matches Excel and works on NumbersJurriaan Pruis
Use 1 or 0 instead of 'true' or 'false' in the XML output
2014-02-26Huge refactoringJurriaan Pruis
Do not create huge strings Let Row inherit from SimpleTypedList Optimized sanitizing Optimized validation And more..
2012-11-05refactored Row serializationRandy Morgan
2012-07-15refactoring auto width calculation to improve code quality.Randy Morgan
2012-05-17fix ALL the warnings!Randy Morgan
2012-05-17finishing off row properties.Randy Morgan
2012-05-15bring coverage up to 100% and patch a few minor bugs in cell style overrides ↵Randy Morgan
and misnamed app attributes.
2012-05-13MOAR specsRandy Morgan
2012-05-09patch nil row style issueRandy Morgan
https://github.com/randym/axlsx/issues/91
2012-04-27test to ensure that add_cell properly updates worksheet column widths. Randy Morgan
2012-04-25bug fix to properly assign style/type data when creating rows and partial ↵Randy Morgan
style/types arrays
2012-04-02Updated tests for nil cellsJurriaan Pruis
2012-04-01part way through changing all serialization to use string concatenation ↵Randy Morgan
prior to dropping Nokogiri dep in production.
2012-03-28Still not fast enough?Randy Morgan
``` user system total real axlsx_noautowidth 0.760000 0.020000 0.780000 ( 0.885482) axlsx 3.560000 0.130000 3.690000 ( 4.158594) axlsx_shared 11.610000 0.180000 11.790000 ( 13.208945) axlsx_stream 3.450000 0.120000 3.570000 ( 3.920745) csv 0.240000 0.010000 0.250000 ( 0.269822)
2012-03-26Quick and Dirty run on trying interpolated strings instead of nokogiri for ↵Randy Morgan
sheet generation.
2012-03-23move requires out of specs and into helper that prepends lib directory for ↵Randy Morgan
requires
2012-02-27Add support for rows with custom height.Stefan Daschek
2011-11-27adding in row_style and col_style methods to worksheet and active record ↵Randy Morgan
'acts_as_axlsx' to provide to_xlsx.
2011-11-20first commitRandy Morgan