Sha256: a633f20414b36be99b996f142cce6831d72890846a79e396df7e7b22a27e0c5b

Contents?: true

Size: 300 Bytes

Versions: 6

Compression:

Stored size: 300 Bytes

Contents

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
byebug-3.5.1 lib/byebug/settings/width.rb
byebug-3.5.0 lib/byebug/settings/width.rb
byebug-3.4.2 lib/byebug/settings/width.rb
byebug-3.4.1 lib/byebug/settings/width.rb
byebug-3.4.0 lib/byebug/settings/width.rb
byebug-3.3.0 lib/byebug/settings/width.rb