Class: Dependabot::Swift::FileUpdater

Inherits:
FileUpdaters::Base
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/dependabot/swift/file_updater.rb,
lib/dependabot/swift/file_updater/pbxproj_updater.rb,
lib/dependabot/swift/file_updater/lockfile_updater.rb,
lib/dependabot/swift/file_updater/manifest_updater.rb,
lib/dependabot/swift/file_updater/requirement_replacer.rb,
lib/dependabot/swift/file_updater/xcode_lockfile_updater.rb

Defined Under Namespace

Classes: LockfileUpdater, ManifestUpdater, PbxprojUpdater, RequirementReplacer, XcodeLockfileUpdater

Instance Method Summary collapse

Instance Method Details

#updated_dependency_filesObject



19
20
21
22
23
24
25
# File 'lib/dependabot/swift/file_updater.rb', line 19

def updated_dependency_files
  if xcode_spm_mode?
    updated_xcode_spm_files
  else
    updated_classic_spm_files
  end
end