deivid-rodriguez/byebug

View on GitHub
lib/byebug/settings/fullpath.rb

Summary

Maintainability
A
0 mins
Test Coverage
# 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