lib/byebug/settings/fullpath.rb



require 'byebug/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