How to override a method in Rails?
To be more specific, I am on 6.0.0.rc1, and I want this commit, but it will be available only on 6.1 : https://github.com/rails/rails/pull/36072/files
I want to override the private method def read_image from
module ActiveStorage
class Analyzer::ImageAnalyzer < Analyzer
private
def read_image
How would you do it, in which Rails folder?