Skip to content

Commit 267daa5

Browse files
committed
Fix strict_unused_block warnings when running specs on Ruby 3.4
Run the specs with -W:strict_unused_block on Ruby 3.4 to more easily catch future issues.
1 parent 7a520bb commit 267daa5

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
=== master
2+
3+
* Fix strict_unused_block warnings when running specs on Ruby 3.4 (jeremyevans)
4+
15
=== 5.87.0 (2024-12-01)
26

37
* Add pg_schema_caching extension, for reloading OIDs for custom types when loading cached schema (jeremyevans)

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ run_spec = proc do |file|
7070
lib_dir = File.join(File.dirname(File.expand_path(__FILE__)), 'lib')
7171
rubylib = ENV['RUBYLIB']
7272
ENV['RUBYLIB'] ? (ENV['RUBYLIB'] += ":#{lib_dir}") : (ENV['RUBYLIB'] = lib_dir)
73-
sh "#{FileUtils::RUBY} #{"-w" if RUBY_VERSION >= '3'} #{file}"
73+
sh "#{FileUtils::RUBY} #{"-w" if RUBY_VERSION >= '3'} #{'-W:strict_unused_block' if RUBY_VERSION >= '3.4'} #{file}"
7474
ENV['RUBYLIB'] = rubylib
7575
end
7676

lib/sequel/extensions/migration.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def create_join_table(*args)
223223
@actions << [:drop_join_table, *args]
224224
end
225225

226-
def create_table(name, opts=OPTS)
226+
def create_table(name, opts=OPTS, &_)
227227
@actions << [:drop_table, name, opts]
228228
end
229229

lib/sequel/extensions/null_dataset.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ def delete
6363
end
6464

6565
# Return self without sending a database query, never yielding.
66-
def each
66+
def each(&_)
6767
self
6868
end
6969

7070
# Return nil without sending a database query, never yielding.
71-
def fetch_rows(sql)
71+
def fetch_rows(sql, &_)
7272
nil
7373
end
7474

spec/extensions/migration_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ def table_exists?(name)
447447

448448
it "should add a column name if it doesn't already exist in the schema_info table" do
449449
@db.create_table(:schema_info){Integer :v}
450-
def @db.alter_table(*); end
450+
def @db.alter_table(*, &_); end
451451
Sequel::Migrator.apply(@db, @dirname)
452452
end
453453

spec/model/hooks_spec.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -353,19 +353,19 @@ def around_validation
353353
@c.raise_on_save_failure = false
354354

355355
o = @c.load(:id => 1)
356-
def o.around_save() end
356+
def o.around_save(&_) end
357357
o.save.must_be_nil
358358

359359
o = @c.load(:id => 1)
360-
def o.around_update() end
360+
def o.around_update(&_) end
361361
o.save.must_be_nil
362362

363363
o = @c.new
364-
def o.around_create() end
364+
def o.around_create(&_) end
365365
o.save.must_be_nil
366366

367367
o = @c.new
368-
def o.around_validation() end
368+
def o.around_validation(&_) end
369369
o.save.must_be_nil
370370
end
371371
end

0 commit comments

Comments
 (0)