Install Exceptional in your ruby app

1. Install the exceptional gem:

	$ gem install exceptional

2. Generate the Exceptional config file (config/exceptional.yml)

	$ exceptional install YOUR-API-KEY

You will find your key in the apps settings screen in Exceptional.

3. Require the Exceptional gem in your ruby code

require 'rubygems'
require 'exceptional'

4. Configure Exceptional for your ruby app

	Exceptional::Config.load("config/exceptional.yml")

5. Use the Exceptional.rescue block to catch exceptions in your ruby code

Exceptional.rescue do
  # Add your Ruby code here!
end

This block will report exceptions to getexceptional.com and then re-raise them to your ruby code