summaryrefslogtreecommitdiffhomepage
path: root/lib
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-07-01 19:47:20 +0200
committerGeremia Taglialatela <[email protected]>2023-07-01 19:47:20 +0200
commit1ef7abad9022e9aa591e039a0fc9c7545b5c022d (patch)
treeb24cb7f00807889156e4a07c2557a1632ced11eb /lib
parentf2f6177efac76e6015b98c3290fd1839b8568fbe (diff)
downloadcaxlsx-1ef7abad9022e9aa591e039a0fc9c7545b5c022d.tar.gz
caxlsx-1ef7abad9022e9aa591e039a0fc9c7545b5c022d.zip
Fix Style/PreferredHashMethods offense
`Gem.loaded_specs` is a hash, so it is safe to use `key?` and enable this cop
Diffstat (limited to 'lib')
-rw-r--r--lib/axlsx.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx.rb b/lib/axlsx.rb
index aeef2dfc..814900fd 100644
--- a/lib/axlsx.rb
+++ b/lib/axlsx.rb
@@ -33,7 +33,7 @@ require 'bigdecimal'
require 'set'
require 'time'
-if Gem.loaded_specs.has_key?("axlsx_styler")
+if Gem.loaded_specs.key?("axlsx_styler")
raise StandardError, "Please remove `axlsx_styler` from your Gemfile, the associated functionality is now built-in to `caxlsx` directly."
end