Latta Rails Recorder

This is a Ruby package used to record exception thrown inside Ruby On Rails projects

Usage

To install the gem you have to add it to your app's Gemfile

gem 'latta', path: '/home/jan/code/latta_rails'

After adding the above line run the following command

bundle install

After a successful installation you have to generate the initializer

rails generate latta:install

Edit the config/initializers/latta.rb file to set the API key:

Latta.configure do |config|
  config.api_key = 'your_api_key'
end