deivid-rodriguez/byebug

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative "../setting"

module Byebug
  #
  # Setting to customize the maximum width of byebug's output.
  #
  class WidthSetting < Setting
    DEFAULT = 160

    def banner
      "Number of characters per line in byebug's output"
    end

    def to_s
      "Maximum width of byebug's output is #{value}"
    end
  end
end