class Gem::SpecificationRecord

def find_inactive_by_path(path)

def find_inactive_by_path(path)
  stub = stubs.find do |s|
    next if s.activated?
    s.contains_requirable_file? path
  end
  stub&.to_spec
end