diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | test/benchmark.rb | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -5,6 +5,7 @@ coverage .yardoc *.gem *.xlsx +example.csv *.*~ .DS_Store tmp
\ No newline at end of file diff --git a/test/benchmark.rb b/test/benchmark.rb index bb9a7b7d..a2179a24 100644 --- a/test/benchmark.rb +++ b/test/benchmark.rb @@ -24,7 +24,7 @@ Benchmark.bm(100) do |x| sheet << row end end - p.serialize("example.xlsx") + p.serialize("example_noautowidth.xlsx") } x.report('axlsx') { @@ -38,7 +38,7 @@ Benchmark.bm(100) do |x| sheet << row end end - p.serialize("example.xlsx") + p.serialize("example_autowidth.xlsx") } x.report('axlsx_shared') { @@ -53,7 +53,7 @@ Benchmark.bm(100) do |x| end end p.use_shared_strings = true - p.serialize("example.xlsx") + p.serialize("example_shared.xlsx") } x.report('axlsx_stream') { |
