diff options
| author | Zsolt Kozaroczy <[email protected]> | 2023-05-31 09:10:37 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-31 09:10:37 +0200 |
| commit | 810c0569a30e6bc053189ea56b4e4d70fd035ac2 (patch) | |
| tree | a6a8cf23fe994b50a78f0c8e17724e5836f91c73 /Rakefile | |
| parent | ede5a1c34e522846e01580c84a0b0d8b85330ed2 (diff) | |
| parent | 2a70161abe24ae130041aaca3eec79e63d08a5f5 (diff) | |
| download | caxlsx-810c0569a30e6bc053189ea56b4e4d70fd035ac2.tar.gz caxlsx-810c0569a30e6bc053189ea56b4e4d70fd035ac2.zip | |
Merge pull request #261 from tagliala/chore/fix-string-concatenation-in-non-production-code
Fix StringConcatenation offenses (non-production)
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,13 +1,13 @@ # frozen_string_literal: true -require File.expand_path(File.dirname(__FILE__) + '/lib/axlsx/version.rb') +require File.expand_path("#{File.dirname(__FILE__)}/lib/axlsx/version.rb") task build: :gendoc do system "gem build axlsx.gemspec" end task :benchmark do - require File.expand_path(File.dirname(__FILE__) + '/test/benchmark.rb') + require File.expand_path("#{File.dirname(__FILE__)}/test/benchmark.rb") end task :gendoc do |
