class Byebug::PostMortemSetting

Setting to enable/disable post_mortem mode, i.e., a debugger prompt after program termination by unhandled exception.

Public Class Methods

new() click to toggle source
# File lib/byebug/settings/post_mortem.rb, line 10
def initialize
  Byebug.post_mortem = DEFAULT
end

Public Instance Methods

banner() click to toggle source
value() click to toggle source
# File lib/byebug/settings/post_mortem.rb, line 22
def value
  Byebug.post_mortem?
end
value=(val) click to toggle source
# File lib/byebug/settings/post_mortem.rb, line 18
def value=(val)
  Byebug.post_mortem = val
end