Appsignal::Grape

AppSignal intergation for Grape, based on code from these NewRelic and Liberato gems.

Build Status

Installation

Add this line to your application's Gemfile:

gem 'grape-appsignal'

Or install:

$ gem install grape-appsignal

Include it in your Grape API like this

class TestAPI < Grape::API
  use Appsignal::Grape::Middleware

  get 'hello' do
    "Hello World"
  end
end

Make sure you have already setup AppSignal for your app!

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Make a pull request