Sha256: fcdcca62f93132cce44ff46ad6915c5e2f6d4b49af5ff831fac19dd63ca02852
Contents?: true
Size: 486 Bytes
Versions: 12
Compression:
Stored size: 486 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=(val) Byebug.post_mortem = val end def value Byebug.post_mortem? end end end
Version data entries
12 entries across 12 versions & 7 rubygems