Sha256: 0193bfc282606716a8af19e4bbdd82d19d573847c1ed85e30e10e2f38b225b5f

Contents?: true

Size: 927 Bytes

Versions: 1

Compression:

Stored size: 927 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:

``` 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.1 README.md