Sha256: 1a25f9576afe3770a576c7331c4c84782ab35e65d18713146a089b7dbe4cd6fb

Contents?: true

Size: 888 Bytes

Versions: 3

Compression:

Stored size: 888 Bytes

Contents

# Ratchetio

Ruby gem for Ratchet.io, for reporting exceptions in Rails 3 to Ratchet.io. Requires a Ratchet.io account (you can sign up for free).

## Installation

Add this line to your application's Gemfile:

    gem 'ratchetio'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install ratchetio

Then, create a file config/initializers/ratchetio.rb containing the following:

```
require 'ratchetio/rails'
Ratchetio.configure do |config|
  config.access_token = 'YOUR_RATCHETIO_PROJECT_ACCESS_TOKEN'
end
```

## Usage

This gem installs an exception handler into Rails. You don't need to do anything else for it to work.

## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ratchetio-0.0.3 README.md
ratchetio-0.0.2 README.md
ratchetio-0.0.1 README.md