Class: Dependabot::FileUpdaters::Base
- Inherits:
-
Object
- Object
- Dependabot::FileUpdaters::Base
- Extended by:
- T::Helpers, T::Sig
- 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.
Instance Method Summary collapse
-
#initialize(dependencies:, dependency_files:, credentials:, repo_contents_path: nil, options: {}) ⇒ Base
constructor
A new instance of Base.
- #notices ⇒ Object
- #updated_dependency_files ⇒ Object
Constructor Details
#initialize(dependencies:, dependency_files:, credentials:, repo_contents_path: nil, options: {}) ⇒ Base
Returns a new instance of Base.
41 42 43 44 45 46 47 48 49 |
# File 'lib/dependabot/file_updaters/base.rb', line 41 def initialize(dependencies:, dependency_files:, credentials:, repo_contents_path: nil, options: {}) @dependencies = dependencies @dependency_files = dependency_files @repo_contents_path = repo_contents_path @credentials = credentials = check_required_files end |
Instance Attribute Details
#credentials ⇒ Object (readonly)
Returns the value of attribute credentials.
27 28 29 |
# File 'lib/dependabot/file_updaters/base.rb', line 27 def credentials @credentials end |
#dependencies ⇒ Object (readonly)
Returns the value of attribute dependencies.
18 19 20 |
# File 'lib/dependabot/file_updaters/base.rb', line 18 def dependencies @dependencies end |
#dependency_files ⇒ Object (readonly)
Returns the value of attribute dependency_files.
21 22 23 |
# File 'lib/dependabot/file_updaters/base.rb', line 21 def dependency_files @dependency_files end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
30 31 32 |
# File 'lib/dependabot/file_updaters/base.rb', line 30 def end |
#repo_contents_path ⇒ Object (readonly)
Returns the value of attribute repo_contents_path.
24 25 26 |
# File 'lib/dependabot/file_updaters/base.rb', line 24 def repo_contents_path @repo_contents_path end |
Instance Method Details
#notices ⇒ Object
57 58 59 |
# File 'lib/dependabot/file_updaters/base.rb', line 57 def notices [] end |
#updated_dependency_files ⇒ Object
52 53 54 |
# File 'lib/dependabot/file_updaters/base.rb', line 52 def updated_dependency_files raise NotImplementedError end |