Class: Dependabot::Gradle::FileUpdater

Inherits:
FileUpdaters::Base
  • Object
show all
Defined in:
lib/dependabot/gradle/file_updater.rb,
lib/dependabot/gradle/file_updater/dependency_set_updater.rb,
lib/dependabot/gradle/file_updater/property_value_updater.rb

Defined Under Namespace

Classes: DependencySetUpdater, PropertyValueUpdater

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.updated_files_regexObject



13
14
15
# File 'lib/dependabot/gradle/file_updater.rb', line 13

def self.updated_files_regex
  [/^build\.gradle$/, %r{/build\.gradle$}]
end

Instance Method Details

#updated_dependency_filesObject



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/dependabot/gradle/file_updater.rb', line 17

def updated_dependency_files
  updated_files = buildfiles.dup

  # Loop through each of the changed requirements, applying changes to
  # all buildfiles for that change. Note that the logic is different
  # here to other languages because Java has property inheritance across
  # files (although we're not supporting it for gradle yet).
  dependencies.each do |dependency|
    updated_files = update_buildfiles_for_dependency(
      buildfiles: updated_files,
      dependency: dependency
    )
  end

  updated_files = updated_files.reject { |f| buildfiles.include?(f) }

  raise "No files changed!" if updated_files.none?

  updated_files
end