class Omnibus::MissingProjectDependency

Public Class Methods

new(dep_name, search_paths) click to toggle source
# File lib/omnibus/exceptions.rb, line 130
def initialize(dep_name, search_paths)
  @dep_name, @search_paths = dep_name, search_paths
end

Public Instance Methods

to_s() click to toggle source
# File lib/omnibus/exceptions.rb, line 134
def to_s
  """
  Attempting to load the project dependency '#{@dep_name}', but it was
  not found at any of the following locations:

  #{@search_paths.join("\n      ")}
  """
end