class Dependabot::FileUpdaters::VendorUpdater
def create_dependency_file(parameters)
def create_dependency_file(parameters) Dependabot::DependencyFile.new(**T.unsafe({ **parameters.merge({ vendored_file: true }) })) end
def initialize(repo_contents_path:, vendor_dir:)
def initialize(repo_contents_path:, vendor_dir:) @repo_contents_path = repo_contents_path @vendor_dir = vendor_dir super(repo_contents_path: @repo_contents_path, target_directory: @vendor_dir) end