Skip to content

Commit 02db725

Browse files
committed
Exclude removed methods in Ruby 3.4
1 parent 43729c1 commit 02db725

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

config/default.yml.erb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@ function:
6868
# FIXME: Workaround for "undefined reference to `rb_class_descendants'" on GitHub Actions (Ubuntu 22.04)
6969
- rb_class_descendants
7070

71+
<% if Gem::Version.create(RUBY_VERSION) >= Gem::Version.create("3.4.0") %>
72+
# Removed since ruby 3.4+
73+
- rb_data_object_make
74+
- rb_newobj
75+
- rb_newobj_of
76+
- rb_st_init_existing_table_with_size
77+
- rb_st_replace
78+
<% end %>
79+
7180
pointer_hint:
7281
RSTRING_PTR:
7382
self: raw

0 commit comments

Comments
 (0)