Sha256: ae5843530115cc504f19e0231450fb7dba672227ea329318ded4fae4a94a2053
Contents?: true
Size: 903 Bytes
Versions: 19
Compression:
Stored size: 903 Bytes
Contents
# Upgrading from ratchetio-gem ## Required immediate steps Add this line to your application's Gemfile: gem 'rollbar', '~> 0.8.2' And remove: gem 'ratchetio' Then execute: $ bundle install Next, rename your `config/initializers/ratchetio.rb` to `config/initializers/rollbar.rb` Open `config/initializers/rollbar.rb` and change `require 'ratchetio/rails'` to `require 'rollbar/rails'` At this point the new Rollbar library should be properly integrated and begin to report exceptions to Rollbar. ## Optional steps These are not required because aliases have been set up from the Ratchetio module/functions to the respective Rollbar versions. Replace all instances of `Ratchetio` in your rails app with `Rollbar`. Replace all instances of `ratchetio_request_data` with `rollbar_request_data`. Replace all instances of `ratchetio_person_data` with `rollbar_person_data`.
Version data entries
19 entries across 19 versions & 1 rubygems