Class: Dependabot::Uv::FileUpdater::CompileFileUpdater
- Inherits:
-
Object
- Object
- Dependabot::Uv::FileUpdater::CompileFileUpdater
- Extended by:
- T::Sig
- Defined in:
- lib/dependabot/uv/file_updater/compile_file_updater.rb
Overview
rubocop:disable Metrics/ClassLength
Constant Summary collapse
- UNSAFE_PACKAGES =
T.let(%w(setuptools distribute pip).freeze, T::Array[String])
- INCOMPATIBLE_VERSIONS_REGEX =
T.let( /There are incompatible versions in the resolved dependencies:.*\z/m, Regexp )
- WARNINGS =
T.let(/\s*# WARNING:.*\Z/m, Regexp)
- UNSAFE_NOTE =
T.let(/\s*# The following packages are considered to be unsafe.*\Z/m, Regexp)
- RESOLVER_REGEX =
T.let(/(?<=--resolver=)(\w+)/, Regexp)
- NATIVE_COMPILATION_ERROR =
T.let( "pip._internal.exceptions.InstallationSubprocessError: Getting requirements to build wheel exited with 1", String )
Instance Attribute Summary collapse
-
#credentials ⇒ Object
readonly
Returns the value of attribute credentials.
-
#dependencies ⇒ Object
readonly
Returns the value of attribute dependencies.
-
#dependency_files ⇒ Object
readonly
Returns the value of attribute dependency_files.
Instance Method Summary collapse
-
#initialize(dependencies:, dependency_files:, credentials:, index_urls: nil) ⇒ CompileFileUpdater
constructor
A new instance of CompileFileUpdater.
- #updated_dependency_files ⇒ Object
Constructor Details
#initialize(dependencies:, dependency_files:, credentials:, index_urls: nil) ⇒ CompileFileUpdater
Returns a new instance of CompileFileUpdater.
58 59 60 61 62 63 64 |
# File 'lib/dependabot/uv/file_updater/compile_file_updater.rb', line 58 def initialize(dependencies:, dependency_files:, credentials:, index_urls: nil) @dependencies = T.let(dependencies, T::Array[Dependabot::Dependency]) @dependency_files = T.let(dependency_files, T::Array[Dependabot::DependencyFile]) @credentials = T.let(credentials, T::Array[Dependabot::Credential]) @index_urls = T.let(index_urls, T.nilable(T::Array[T.nilable(String)])) @build_isolation = T.let(true, T::Boolean) end |
Instance Attribute Details
#credentials ⇒ Object (readonly)
Returns the value of attribute credentials.
48 49 50 |
# File 'lib/dependabot/uv/file_updater/compile_file_updater.rb', line 48 def credentials @credentials end |
#dependencies ⇒ Object (readonly)
Returns the value of attribute dependencies.
42 43 44 |
# File 'lib/dependabot/uv/file_updater/compile_file_updater.rb', line 42 def dependencies @dependencies end |
#dependency_files ⇒ Object (readonly)
Returns the value of attribute dependency_files.
45 46 47 |
# File 'lib/dependabot/uv/file_updater/compile_file_updater.rb', line 45 def dependency_files @dependency_files end |
Instance Method Details
#updated_dependency_files ⇒ Object
67 68 69 70 71 72 |
# File 'lib/dependabot/uv/file_updater/compile_file_updater.rb', line 67 def updated_dependency_files @updated_dependency_files ||= T.let( fetch_updated_dependency_files, T.nilable(T::Array[Dependabot::DependencyFile]) ) end |