prepare for release

This commit is contained in:
Alp Mestanogullari 2014-12-10 16:39:40 +01:00
parent e43532b71d
commit 824c56ff22
3 changed files with 19 additions and 10 deletions

15
.travis.yml Normal file
View file

@ -0,0 +1,15 @@
language: haskell
ghc:
- 7.8
notifications:
irc:
channels:
- "irc.freenode.org#servant"
template:
- "%{repository}#%{build_number} - %{commit} on %{branch} by %{author}: %{message}"
- "Build details: %{build_url} - Change view: %{compare_url}"
skip_join: true
on_success: change
on_failure: always

View file

@ -1,17 +1,10 @@
# servant # servant-server
[![Build Status](https://secure.travis-ci.org/haskell-servant/servant.svg)](http://travis-ci.org/haskell-servant/servant) [![Build Status](https://secure.travis-ci.org/haskell-servant/servant-server.svg)](http://travis-ci.org/haskell-servant/servant-server)
![servant](https://raw.githubusercontent.com/haskell-servant/servant/master/servant.png) ![servant](https://raw.githubusercontent.com/haskell-servant/servant/master/servant.png)
These libraries provides a family of combinators to define webservices and automatically generate the documentation and client-side querying functions for each endpoint. This library lets you *implement* an HTTP server with handlers for each endpoint of a servant API, handling most of the boilerplate for you.
In order to minimize the dependencies depending on your needs, we provide these features under different packages.
- `servant`, which contains everything you need to *declare* a webservice and *implement* an HTTP server with handlers for each endpoint.
- `servant-client`, which lets you derive automatically Haskell functions that let you query each endpoint of a *servant* webservice.
- `servant-docs`, which lets you generate API docs for your webservice.
- `servant-jquery`, which lets you derive Javascript functions (based on jquery) to query your API's endpoints, in the same spirit as `servant-client`.
## Getting started ## Getting started

View file

@ -86,6 +86,7 @@ test-suite spec
, QuickCheck , QuickCheck
, parsec , parsec
, servant , servant
, servant-server
, string-conversions , string-conversions
, temporary , temporary
, text , text