Sha256: e8ce23f0aec4f80d73c2987b8be6211737bc8982617b6e097b8fa185db540d79

Contents?: true

Size: 267 Bytes

Versions: 1

Compression:

Stored size: 267 Bytes

Contents

require 'bugsnag'
require './app'

configure_basics
add_at_exit

def run(callback)
  Bugsnag.add_on_error(callback)
  step_one
end

def step_one
  step_two
end

def step_two
  step_three
end

def step_three
  crash
end

def crash
  raise RuntimeError.new "Oh no"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bugsnag-6.15.0 features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_on_error.rb