class Dependabot::GitSubmodules::PackageManager

def deprecated?

def deprecated?
  false
end

def initialize(raw_version)

def initialize(raw_version)
  super(
    name: PACKAGE_MANAGER,
    version: Version.new(raw_version),
    deprecated_versions: DEPRECATED_GIT_VERSIONS,
    supported_versions: SUPPORTED_GIT_VERSIONS
  )
end

def unsupported?

def unsupported?
  false
end