h1. Hoptoad API An unofficial Ruby library for interacting with the "Hoptoad API":http://hoptoadapp.com/pages/api h2. Usage

Hoptoad.account = 'myaccount'
Hoptoad.token = 'abcdeghijklmnopqrstuvwxyz'

# find an individual error:
Hoptoad::Error.find(12345)

# or get a list of errors using:
Hoptoad::Error.find(:all)
Hoptoad::Error.find(:all, :params => { :page => 2 })

h2. Requirements * ActiveResource * ActiveSupport h2. Acknowledgements * "Hoptoad":http://hoptoadapp.com * "Lighthouse-api":http://github.com/Caged/lighthouse-api (inspiration for much of this code)