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>}mx.freeze
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.
18 19 20 21 22 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 18 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.
16 17 18 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 16 def declaring_requirement @declaring_requirement end |
#dependency ⇒ Object (readonly)
Returns the value of attribute dependency.
16 17 18 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 16 def dependency @dependency end |
#dependency_files ⇒ Object (readonly)
Returns the value of attribute dependency_files.
16 17 18 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 16 def dependency_files @dependency_files end |
Instance Method Details
#declaration_nodes ⇒ Object
28 29 30 31 32 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 28 def declaration_nodes declaration_strings.map do |declaration_string| Nokogiri::XML(declaration_string) end end |
#declaration_strings ⇒ Object
24 25 26 |
# File 'lib/dependabot/maven/file_updater/declaration_finder.rb', line 24 def declaration_strings @declaration_strings ||= fetch_pom_declaration_strings end |