Class: Dependabot::Maven::FileUpdater::DeclarationFinder
- Inherits:
-
Object
- Object
- Dependabot::Maven::FileUpdater::DeclarationFinder
- Defined in:
- lib/dependabot/maven/file_updater/declaration_finder.rb
Constant Summary collapse
- DECLARATION_REGEX =
%r{ <parent>.*?</parent>| <dependency>.*?</dependency>| <plugin>.*?(?:<plugin>.*?</plugin>.*)?</plugin>| <extension>.*?</extension>| <path>.*?</path>| <artifactItem>.*?</artifactItem> }mx
Instance Attribute Summary collapse
-
#declaring_requirement ⇒ Object
readonly
Returns the value of attribute declaring_requirement.
-
#dependency ⇒ Object
readonly
Returns the value of attribute dependency.
-
#dependency_files ⇒ Object
readonly
Returns the value of attribute dependency_files.
Instance Method Summary collapse
- #declaration_nodes ⇒ Object
- #declaration_strings ⇒ Object
-
#initialize(dependency:, dependency_files:, declaring_requirement:) ⇒ DeclarationFinder
constructor
A new instance of DeclarationFinder.
Constructor Details
#initialize(dependency:, dependency_files:, declaring_requirement:) ⇒ DeclarationFinder
Returns a new instance of DeclarationFinder.
26 27 28 29 30 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 26 def initialize(dependency:, dependency_files:, declaring_requirement:) @dependency = dependency @dependency_files = dependency_files @declaring_requirement = declaring_requirement end |
Instance Attribute Details
#declaring_requirement ⇒ Object (readonly)
Returns the value of attribute declaring_requirement.
23 24 25 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 23 def declaring_requirement @declaring_requirement end |
#dependency ⇒ Object (readonly)
Returns the value of attribute dependency.
22 23 24 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 22 def dependency @dependency end |
#dependency_files ⇒ Object (readonly)
Returns the value of attribute dependency_files.
24 25 26 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 24 def dependency_files @dependency_files end |
Instance Method Details
#declaration_nodes ⇒ Object
36 37 38 39 40 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 36 def declaration_nodes declaration_strings.map do |declaration_string| Nokogiri::XML(declaration_string) end end |
#declaration_strings ⇒ Object
32 33 34 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 32 def declaration_strings @declaration_strings ||= fetch_pom_declaration_strings end |