Class: Dependabot::FileUpdaters::Base

Inherits:
Object
  • Object
show all
Extended by:
T::Helpers, T::Sig
Defined in:
lib/dependabot/file_updaters/base.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dependencies:, dependency_files:, credentials:, repo_contents_path: nil, options: {}) ⇒ Base

Returns a new instance of Base.



45
46
47
48
49
50
51
52
53
# File 'lib/dependabot/file_updaters/base.rb', line 45

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
  @options = options

  check_required_files
end

Instance Attribute Details

#credentialsObject (readonly)

Returns the value of attribute credentials.



26
27
28
# File 'lib/dependabot/file_updaters/base.rb', line 26

def credentials
  @credentials
end

#dependenciesObject (readonly)

Returns the value of attribute dependencies.



17
18
19
# File 'lib/dependabot/file_updaters/base.rb', line 17

def dependencies
  @dependencies
end

#dependency_filesObject (readonly)

Returns the value of attribute dependency_files.



20
21
22
# File 'lib/dependabot/file_updaters/base.rb', line 20

def dependency_files
  @dependency_files
end

#optionsObject (readonly)

Returns the value of attribute options.



29
30
31
# File 'lib/dependabot/file_updaters/base.rb', line 29

def options
  @options
end

#repo_contents_pathObject (readonly)

Returns the value of attribute repo_contents_path.



23
24
25
# File 'lib/dependabot/file_updaters/base.rb', line 23

def repo_contents_path
  @repo_contents_path
end

Class Method Details

.updated_files_regexObject

Raises:

  • (NotImplementedError)


32
33
34
# File 'lib/dependabot/file_updaters/base.rb', line 32

def self.updated_files_regex
  raise NotImplementedError
end

Instance Method Details

#updated_dependency_filesObject

Raises:

  • (NotImplementedError)


56
57
58
# File 'lib/dependabot/file_updaters/base.rb', line 56

def updated_dependency_files
  raise NotImplementedError
end