Class: Dependabot::Conda::CondaPackageManager

Inherits:
Ecosystem::VersionManager
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/dependabot/conda/package_manager.rb

Constant Summary collapse

NAME =
"conda"
SUPPORTED_VERSIONS =
T.let([].freeze, T::Array[Dependabot::Version])
DEPRECATED_VERSIONS =
T.let([].freeze, T::Array[Dependabot::Version])

Instance Method Summary collapse

Constructor Details

#initializeCondaPackageManager

Returns a new instance of CondaPackageManager.



24
25
26
27
28
29
30
31
# File 'lib/dependabot/conda/package_manager.rb', line 24

def initialize
  super(
    name: NAME,
    version: nil,
    deprecated_versions: DEPRECATED_VERSIONS,
    supported_versions: SUPPORTED_VERSIONS
  )
end

Instance Method Details

#deprecated?Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/dependabot/conda/package_manager.rb', line 34

def deprecated?
  false
end

#unsupported?Boolean

Returns:

  • (Boolean)


39
40
41
# File 'lib/dependabot/conda/package_manager.rb', line 39

def unsupported?
  false
end