File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/byebug-11.1.3/lib/byebug/settings/

Viewing File: fullpath.rb

# frozen_string_literal: true

require_relative "../setting"

module Byebug
  #
  # Setting to display full paths in backtraces.
  #
  class FullpathSetting < Setting
    DEFAULT = true

    def banner
      "Display full file names in backtraces"
    end
  end
end