We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b80900 commit f9d2108Copy full SHA for f9d2108
Rakefile
@@ -26,7 +26,9 @@ all_specs << :spec_ar unless RUBY_ENGINE == 'jruby'
26
desc "Run Sequel and ActiveRecord specs"
27
task :default=>all_specs
28
29
-test_flags = '-w' if RUBY_VERSION >= '3'
+test_flags = String.new
30
+test_flags << '-w ' if RUBY_VERSION >= '3'
31
+test_flags << '-W:strict_unused_block ' if RUBY_VERSION >= '3.4'
32
33
desc "Run Sequel specs"
34
task :spec_sequel do
0 commit comments