Class: Dependabot::FileUpdaters::Base
- Inherits:
-
Object
- Object
- Dependabot::FileUpdaters::Base
- Defined in:
- lib/dependabot/file_updaters/base.rb
Instance Attribute Summary collapse
-
#credentials ⇒ Object
readonly
Returns the value of attribute credentials.
-
#dependencies ⇒ Object
readonly
Returns the value of attribute dependencies.
-
#dependency_files ⇒ Object
readonly
Returns the value of attribute dependency_files.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#repo_contents_path ⇒ Object
readonly
Returns the value of attribute repo_contents_path.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(dependencies:, dependency_files:, repo_contents_path: nil, credentials:, options: {}) ⇒ Base
constructor
A new instance of Base.
- #updated_dependency_files ⇒ Object
Constructor Details
#initialize(dependencies:, dependency_files:, repo_contents_path: nil, credentials:, options: {}) ⇒ Base
Returns a new instance of Base.
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/dependabot/file_updaters/base.rb', line 14 def initialize(dependencies:, dependency_files:, repo_contents_path: nil, credentials:, options: {}) @dependencies = dependencies @dependency_files = dependency_files @repo_contents_path = repo_contents_path @credentials = credentials @options = check_required_files end |
Instance Attribute Details
#credentials ⇒ Object (readonly)
Returns the value of attribute credentials.
7 8 9 |
# File 'lib/dependabot/file_updaters/base.rb', line 7 def credentials @credentials end |
#dependencies ⇒ Object (readonly)
Returns the value of attribute dependencies.
7 8 9 |
# File 'lib/dependabot/file_updaters/base.rb', line 7 def dependencies @dependencies end |
#dependency_files ⇒ Object (readonly)
Returns the value of attribute dependency_files.
7 8 9 |
# File 'lib/dependabot/file_updaters/base.rb', line 7 def dependency_files @dependency_files end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
7 8 9 |
# File 'lib/dependabot/file_updaters/base.rb', line 7 def @options end |
#repo_contents_path ⇒ Object (readonly)
Returns the value of attribute repo_contents_path.
7 8 9 |
# File 'lib/dependabot/file_updaters/base.rb', line 7 def repo_contents_path @repo_contents_path end |
Class Method Details
.updated_files_regex ⇒ Object
10 11 12 |
# File 'lib/dependabot/file_updaters/base.rb', line 10 def self.updated_files_regex raise NotImplementedError end |
Instance Method Details
#updated_dependency_files ⇒ Object
25 26 27 |
# File 'lib/dependabot/file_updaters/base.rb', line 25 def updated_dependency_files raise NotImplementedError end |