Class: Dependabot::Dep::UpdateChecker::FilePreparer
- Inherits:
-
Object
- Object
- Dependabot::Dep::UpdateChecker::FilePreparer
- Defined in:
- lib/dependabot/dep/update_checker/file_preparer.rb
Overview
This class takes a set of dependency files and prepares them for use in Dep::UpdateChecker.
Instance Method Summary collapse
-
#initialize(dependency_files:, dependency:, remove_git_source: false, unlock_requirement: true, replacement_git_pin: nil, latest_allowable_version: nil) ⇒ FilePreparer
constructor
A new instance of FilePreparer.
- #prepared_dependency_files ⇒ Object
Constructor Details
#initialize(dependency_files:, dependency:, remove_git_source: false, unlock_requirement: true, replacement_git_pin: nil, latest_allowable_version: nil) ⇒ FilePreparer
Returns a new instance of FilePreparer.
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/dependabot/dep/update_checker/file_preparer.rb', line 14 def initialize(dependency_files:, dependency:, remove_git_source: false, unlock_requirement: true, replacement_git_pin: nil, latest_allowable_version: nil) @dependency_files = dependency_files @dependency = dependency @unlock_requirement = unlock_requirement @remove_git_source = remove_git_source @replacement_git_pin = replacement_git_pin @latest_allowable_version = latest_allowable_version end |
Instance Method Details
#prepared_dependency_files ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'lib/dependabot/dep/update_checker/file_preparer.rb', line 27 def prepared_dependency_files files = [] files << manifest_for_update_check files << lockfile if lockfile files end |