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 cfc126c commit 500ae6fCopy full SHA for 500ae6f
Rakefile
@@ -20,7 +20,9 @@ rdoc_task_class.new do |rdoc|
20
rdoc.rdoc_files.add %w"README.rdoc MIT-LICENSE lib/sequel_postgresql_triggers.rb lib/sequel/extensions/pg_triggers.rb"
21
end
22
23
-test_flags = "-w" if RUBY_VERSION >= '3'
+test_flags = String.new
24
+test_flags << " -w" if RUBY_VERSION >= '3'
25
+test_flags << " -W:strict_unused_block" if RUBY_VERSION >= '3.4'
26
27
desc "Run specs with extension"
28
task :spec do
0 commit comments