Exception: Dependabot::DependencyFileNotFound

Inherits:
DependabotError show all
Defined in:
lib/dependabot/errors.rb

Overview

File level errors #

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(file_path, msg = nil) ⇒ DependencyFileNotFound

Returns a new instance of DependencyFileNotFound.



57
58
59
60
# File 'lib/dependabot/errors.rb', line 57

def initialize(file_path, msg = nil)
  @file_path = file_path
  super(msg)
end

Instance Attribute Details

#file_pathObject (readonly)

Returns the value of attribute file_path.



55
56
57
# File 'lib/dependabot/errors.rb', line 55

def file_path
  @file_path
end

Instance Method Details

#directoryObject



66
67
68
69
# File 'lib/dependabot/errors.rb', line 66

def directory
  # Directory should always start with a `/`
  file_path.split("/")[0..-2].join("/").sub(%r{^/*}, "/")
end

#file_nameObject



62
63
64
# File 'lib/dependabot/errors.rb', line 62

def file_name
  file_path.split("/").last
end