Sha256: 743d09b611b5225ec175abf5f85868283df6f14a8f8e0191c26055dc214bd9bd
Contents?: true
Size: 320 Bytes
Versions: 10
Compression:
Stored size: 320 Bytes
Contents
require 'bugsnag' require './app' configure_basics def run(callback) Bugsnag.before_notify_callbacks << callback step_one end def step_one step_two end def step_two step_three end def step_three crash end def crash begin "Test".insrt(-1, "!") rescue Exception => e Bugsnag.notify(e) end end
Version data entries
10 entries across 10 versions & 1 rubygems