Ruby

Ruby

Made by DeepSource

END detected in a method RB-LI1020

Bug risk
Major

END block is detected in a method. at_exit should be used instead.

Bad practice

def some_method
  END { do_something }
end

Recommended

def some_method
  at_exit { do_something }
end