Class: Dependabot::Maven::FileUpdater
- Inherits:
-
FileUpdaters::Base
- Object
- FileUpdaters::Base
- Dependabot::Maven::FileUpdater
- Extended by:
- T::Sig
- Defined in:
- lib/dependabot/maven/file_updater.rb,
lib/dependabot/maven/file_updater/wrapper_updater.rb,
lib/dependabot/maven/file_updater/declaration_finder.rb,
lib/dependabot/maven/file_updater/property_value_updater.rb,
lib/dependabot/maven/file_updater/dependency_requirement_scopes.rb
Defined Under Namespace
Classes: DeclarationFinder, DependencyRequirementScopes, PropertyValueUpdater, WrapperUpdater
Constant Summary collapse
- IndentConfig =
T.type_alias do { base: String, is_tabs: T::Boolean, levels: T::Hash[Symbol, String] } end
Instance Method Summary collapse
Instance Method Details
#updated_dependency_files ⇒ Object
27 28 29 30 31 32 |
# File 'lib/dependabot/maven/file_updater.rb', line 27 def updated_dependency_files all_updated = collect_wrapper_updates + collect_pom_updates raise "No files changed!" if all_updated.none? all_updated end |