Class: Dependabot::Conda::CondaPackageManager
- Inherits:
-
Ecosystem::VersionManager
- Object
- Ecosystem::VersionManager
- Dependabot::Conda::CondaPackageManager
- 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
- #deprecated? ⇒ Boolean
-
#initialize ⇒ CondaPackageManager
constructor
A new instance of CondaPackageManager.
- #unsupported? ⇒ Boolean
Constructor Details
#initialize ⇒ CondaPackageManager
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
34 35 36 |
# File 'lib/dependabot/conda/package_manager.rb', line 34 def deprecated? false end |
#unsupported? ⇒ Boolean
39 40 41 |
# File 'lib/dependabot/conda/package_manager.rb', line 39 def unsupported? false end |