File Manager

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

Viewing File: basename.rb

# frozen_string_literal: true

require_relative "../setting"

module Byebug
  #
  # Command to display short paths in file names.
  #
  # For example, when displaying source code information.
  #
  class BasenameSetting < Setting
    def banner
      "<file>:<line> information after every stop uses short paths"
    end
  end
end