Pronghorn

Minimal HTTP server for Rack applications

Description

Pronghorn is a minimal and fast HTTP server for Rack applications.

It's powered by EventMachine, Ryan Dahl's http-parser and Rack. It's highly inspired by Thin

Installation

$ gem install pronghorn

Usage

Rails

Add Pronghorn to your Gemfile:

gem "pronghorn"

Run your application with the Pronghorn server:

rails s pronghorn

Sinatra

Configure Sinatra to use Pronghorn server:

configure { set :server, :pronghorn }

Rack

Run rackup using pronghorn server:

$ rackup -s pronghorn

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Copyright (c) 2012 Guillermo Iguaran. See LICENSE for further details.