Sha256: a1d29d8b9438ac3abd35c51eab8364fa891f01a1051c96032be01f4eef02e45a
Contents?: true
Size: 482 Bytes
Versions: 6
Compression:
Stored size: 482 Bytes
Contents
# frozen_string_literal: true require "byebug/setting" module Byebug # # Setting to enable/disable post_mortem mode, i.e., a debugger prompt after # program termination by unhandled exception. # class PostMortemSetting < Setting def initialize Byebug.post_mortem = DEFAULT end def banner "Enable/disable post-mortem mode" end def value=(v) Byebug.post_mortem = v end def value Byebug.post_mortem? end end end
Version data entries
6 entries across 6 versions & 2 rubygems