Class: Dependabot::Python::UpdateChecker::LatestVersionFinder

Inherits:
Dependabot::Package::PackageLatestVersionFinder
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/dependabot/python/update_checker/latest_version_finder.rb

Instance Method Summary collapse

Instance Method Details

#cooldown_enabled?Boolean

Returns:

  • (Boolean)


37
38
39
# File 'lib/dependabot/python/update_checker/latest_version_finder.rb', line 37

def cooldown_enabled?
  true
end

#package_detailsObject



28
29
30
31
32
33
34
# File 'lib/dependabot/python/update_checker/latest_version_finder.rb', line 28

def package_details
  @package_details ||= Package::PackageDetailsFetcher.new(
    dependency: dependency,
    dependency_files: dependency_files,
    credentials: credentials
  ).fetch
end