Sha256: 3ba510ca21daa2f82de5e016f6b6dc6360ee19cdeb171a1d5c6f1adebd41bbd4

Contents?: true

Size: 951 Bytes

Versions: 1

Compression:

Stored size: 951 Bytes

Contents

# WhatsUpDoc

Responds with `200` for a specific path. Useful for load balancers to hit without needing to go through the whole rails
stack. Insert before logging middleware, so that a load balancer doesn't pollute your log with requests.

## Installation

Add this line to your application's Gemfile:

    gem 'whats_up_doc'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install whats_up_doc

## Usage

In a rackup file:

``` ruby
use WhatsUpDoc::Middleware, path: '/my-up-path'
```

Or in Rails (config/application.rb):

``` ruby
config.middleware.use(WhatsUpDoc::Middleware, path: '/my-up-path')
```

The default path is `/up`.

## Contributing

1. Fork it ( http://github.com/secondrotation/whats_up_doc/fork )
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. Create new Pull Request

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
whats_up_doc-0.0.2 README.md