File tree 6 files changed +13
-9
lines changed
6 files changed +13
-9
lines changed Original file line number Diff line number Diff line change
1
+ === master
2
+
3
+ * Fix strict_unused_block warnings when running specs on Ruby 3.4 (jeremyevans)
4
+
1
5
=== 5.87.0 (2024-12-01)
2
6
3
7
* Add pg_schema_caching extension, for reloading OIDs for custom types when loading cached schema (jeremyevans)
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ run_spec = proc do |file|
70
70
lib_dir = File . join ( File . dirname ( File . expand_path ( __FILE__ ) ) , 'lib' )
71
71
rubylib = ENV [ 'RUBYLIB' ]
72
72
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 } "
74
74
ENV [ 'RUBYLIB' ] = rubylib
75
75
end
76
76
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ def create_join_table(*args)
223
223
@actions << [ :drop_join_table , *args ]
224
224
end
225
225
226
- def create_table ( name , opts = OPTS )
226
+ def create_table ( name , opts = OPTS , & _ )
227
227
@actions << [ :drop_table , name , opts ]
228
228
end
229
229
Original file line number Diff line number Diff line change @@ -63,12 +63,12 @@ def delete
63
63
end
64
64
65
65
# Return self without sending a database query, never yielding.
66
- def each
66
+ def each ( & _ )
67
67
self
68
68
end
69
69
70
70
# Return nil without sending a database query, never yielding.
71
- def fetch_rows ( sql )
71
+ def fetch_rows ( sql , & _ )
72
72
nil
73
73
end
74
74
Original file line number Diff line number Diff line change @@ -447,7 +447,7 @@ def table_exists?(name)
447
447
448
448
it "should add a column name if it doesn't already exist in the schema_info table" do
449
449
@db . create_table ( :schema_info ) { Integer :v }
450
- def @db . alter_table ( *) ; end
450
+ def @db . alter_table ( *, & _ ) ; end
451
451
Sequel ::Migrator . apply ( @db , @dirname )
452
452
end
453
453
Original file line number Diff line number Diff line change @@ -353,19 +353,19 @@ def around_validation
353
353
@c . raise_on_save_failure = false
354
354
355
355
o = @c . load ( :id => 1 )
356
- def o . around_save ( ) end
356
+ def o . around_save ( & _ ) end
357
357
o . save . must_be_nil
358
358
359
359
o = @c . load ( :id => 1 )
360
- def o . around_update ( ) end
360
+ def o . around_update ( & _ ) end
361
361
o . save . must_be_nil
362
362
363
363
o = @c . new
364
- def o . around_create ( ) end
364
+ def o . around_create ( & _ ) end
365
365
o . save . must_be_nil
366
366
367
367
o = @c . new
368
- def o . around_validation ( ) end
368
+ def o . around_validation ( & _ ) end
369
369
o . save . must_be_nil
370
370
end
371
371
end
You can’t perform that action at this time.
0 commit comments