Exception: Dependabot::DependencyFileNotParseable
- Inherits:
-
DependabotError
- Object
- StandardError
- DependabotError
- Dependabot::DependencyFileNotParseable
- Defined in:
- lib/dependabot/errors.rb
Constant Summary
Constants inherited from DependabotError
Dependabot::DependabotError::BASIC_AUTH_REGEX, Dependabot::DependabotError::FURY_IO_PATH_REGEX
Instance Attribute Summary collapse
-
#file_path ⇒ Object
readonly
Returns the value of attribute file_path.
Instance Method Summary collapse
- #directory ⇒ Object
- #file_name ⇒ Object
-
#initialize(file_path, msg = nil) ⇒ DependencyFileNotParseable
constructor
A new instance of DependencyFileNotParseable.
Constructor Details
#initialize(file_path, msg = nil) ⇒ DependencyFileNotParseable
Returns a new instance of DependencyFileNotParseable.
123 124 125 126 |
# File 'lib/dependabot/errors.rb', line 123 def initialize(file_path, msg = nil) @file_path = file_path super(msg || "#{file_path} not parseable") end |
Instance Attribute Details
#file_path ⇒ Object (readonly)
Returns the value of attribute file_path.
121 122 123 |
# File 'lib/dependabot/errors.rb', line 121 def file_path @file_path end |
Instance Method Details
#directory ⇒ Object
132 133 134 135 |
# File 'lib/dependabot/errors.rb', line 132 def directory # Directory should always start with a `/` file_path.split("/")[0..-2].join("/").sub(%r{^/*}, "/") end |
#file_name ⇒ Object
128 129 130 |
# File 'lib/dependabot/errors.rb', line 128 def file_name file_path.split("/").last end |