We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38bda8 commit c49a501Copy full SHA for c49a501
Gemfile
@@ -19,11 +19,8 @@ gem 'rubocop-rake', require: false
19
gem 'rubocop-rspec', require: false
20
21
# Fix:
22
-# warning: ostruct was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0
23
-# Add ostruct to your Gemfile or gemspec.
24
-#
25
# warning: logger was loaded from the standard library, but will no longer be part of the default gems since Ruby 3.5.0
26
# Add logger to your Gemfile or gemspec.
27
-if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.4.0')
+if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.4.0') # rubocop:disable Style/IfUnlessModifier
28
gem 'logger'
29
end
0 commit comments