Sha256: 0c531a260803f8e65c604097c926c9723fb4536ef1a8c3be2d816faefdaf3e0a

Contents?: true

Size: 952 Bytes

Versions: 4

Compression:

Stored size: 952 Bytes

Contents

require 'rubygems'
require 'bundler/setup'
require 'sinatra/base'
require 'exception_notification'

class SinatraApp < Sinatra::Base
  use ExceptionNotification::Rack,
    :email => {
      :email_prefix => "[Example] ",
      :sender_address => %{"notifier" <notifier@example.com>},
      :exception_recipients => %w{exceptions@example.com},
      :smtp_settings => { :address => "localhost", :port => 1025 }
    }

  get '/' do
    raise StandardError, "ERROR: #{params[:error]}" unless params[:error].blank?
    'Everything is fine! Now, lets break things clicking <a href="/?error=ops"> here </a>. Dont forget to see the emails at <a href="http://localhost:1080">mailcatcher</a> !'
  end

  get '/background_notification' do
    begin
      1/0
    rescue Exception => e
      ExceptionNotifier.notify_exception(e, :data => {:msg => "Cannot divide by zero!"})
    end
    'Check email at <a href="http://localhost:1080">mailcatcher</a>.'
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
exception_notification-4.1.0.rc1 examples/sinatra/sinatra_app.rb
exception_notification-4.0.1 examples/sinatra/sinatra_app.rb
exception_notification-4.0.0 examples/sinatra/sinatra_app.rb
exception_notification-4.0.0.rc1 examples/sinatra/sinatra_app.rb