Skip to content

Commit

Permalink
Remove Kernel.taint
Browse files Browse the repository at this point in the history
Taint tracking removed in ruby 2.7
Added deprecation warning message in ruby 3.2
Removed in ruby 3.3
  • Loading branch information
kbrock committed Sep 19, 2024
1 parent b6aae26 commit e7abf06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/metadata/util/find_class_methods.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def self.find(path, max_depth = nil)

while (file = paths.shift)
depth = depths.shift
yield file.dup.taint
yield file.dup
next if max_depth && depth + 1 > max_depth

get_dir_entries(file).each do |f|
Expand Down

0 comments on commit e7abf06

Please sign in to comment.