module ActiveSupport::Dependencies::ZeitwerkIntegration::RequireDependency

def require_dependency(filename)

def require_dependency(filename)
  filename = filename.to_path if filename.respond_to?(:to_path)
  if abspath = ActiveSupport::Dependencies.search_for_file(filename)
    require abspath
  else
    require filename
  end
end