summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorZsolt Kozaroczy <[email protected]>2023-05-31 09:10:37 +0200
committerGitHub <[email protected]>2023-05-31 09:10:37 +0200
commit810c0569a30e6bc053189ea56b4e4d70fd035ac2 (patch)
treea6a8cf23fe994b50a78f0c8e17724e5836f91c73 /Rakefile
parentede5a1c34e522846e01580c84a0b0d8b85330ed2 (diff)
parent2a70161abe24ae130041aaca3eec79e63d08a5f5 (diff)
downloadcaxlsx-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--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 8125959f..28712c0d 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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