File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/byebug-9.0.6/lib/byebug/settings/

Viewing File: 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