Squash::Rack
Integrates squash logging into your rack apps.
Installation
Add this line to your application's Gemfile:
gem 'squash-rack'
And then execute:
$ bundle
Or install it yourself as:
$ gem install squash-rack
Usage
Sinatra
require 'squash/rack'
Squash::Ruby.configure :api_key => 'my_app_api_key',
:api_host => 'https://my_squash_host',
:environment => ENV["RACK_ENV"]
class MyApp < Sinatra::Base
use Squash::Rack
end
Padrino
Add the following to your padrino app's config/boot.rb:
require 'squash/rack'
Squash::Ruby.configure :api_key => 'my_app_api_key',
:api_host => 'https://my_squash_host',
:environment => Padrino.env
Padrino::Application.use Squash::Rack
Contributing
- Fork it ( https://github.com/DylanGriffith/squash-rack/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request