Capture production errors automatically in your Rails applications.
gem install bugstack
Or add gem 'bugstack' to your Gemfile and run bundle install.
# config/initializers/bugstack.rb
require 'bugstack'
Bugstack.configure do |config|
config.api_key = ENV['BUGSTACK_API_KEY']
end
# That's it! bugstack automatically captures
# unhandled exceptions in your Rails app.
View the full source code, report issues, and contribute on GitHub.