# frozen_string_literal: true require "refinements/arrays" module Pennyworth module Presenters # Renders a standard error into a compatible format for use in Alfred script filters. class StandardError using Refinements::Arrays def initialize record @record = record end def id = label def label = record.name.to_s def path = file_path.empty? ? "" : [file_path, record.line_number].compress.join(":") private attr_reader :record def file_path = record.file_path.to_s end end end