class BatchRename::Editor::EditorNotFoundError

Attributes

path[R]

Public Class Methods

new(path) click to toggle source
# File lib/batch_rename/editor/editor_not_found_error.rb, line 13
def initialize(path)
  @path = path
end

Public Instance Methods

message() click to toggle source
# File lib/batch_rename/editor/editor_not_found_error.rb, line 7
def message
  "Unable to launch \"#{ path }\"; is DiffMerge installed?"
end