From 91a4c9b5db7e78f4feff7039806929e33b13875d Mon Sep 17 00:00:00 2001 From: Arne Bahlo Date: Fri, 1 Aug 2014 19:47:49 +0200 Subject: [PATCH 1/4] Close bracket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 71c99bf..ab8362e 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ I wanted to create a small, fast and reliable REST API server, which supports quick JSON and error output, good rooting and easy-to-use middleware. I have split the files after responsibility to make it easy for everyone to -dive in (start with `goat.go`. +dive in (start with `goat.go`). ## Feedback If you have problems, feel free to From a5f376398940e78b6538abd45ce6b1a78649919f Mon Sep 17 00:00:00 2001 From: Arne Bahlo Date: Fri, 1 Aug 2014 14:39:42 +0200 Subject: [PATCH 2/4] Add badges --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ab8362e..8908e31 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Goat +# Goat [![GoDoc](https://godoc.org/github.com/bahlo/goat?status.png)](https://godoc.org/github.com/bahlo/goat) [![Build Status](https://secure.travis-ci.org/bahlo/goat.png?branch=master)](https://travis-ci.org/bahlo/goat) [![Coverage Status](https://coveralls.io/repos/bahlo/goat/badge.png?branch=master)](https://coveralls.io/r/bahlo/goat?branch=master) Goat is a Go REST server. You can pronounce it like the _goat_, or _go-at_. Depends on how you like goats. From c086b9bf9d662441da7613fd971b1aa7085b2a2b Mon Sep 17 00:00:00 2001 From: Arne Bahlo Date: Fri, 1 Aug 2014 19:56:41 +0200 Subject: [PATCH 3/4] Add .travis.yml --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e52013e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: go +notifications: + email: + on_success: never + on_failure: change +go: + - tip +before_install: + - go get github.com/axw/gocov/gocov + - go get github.com/mattn/goveralls + - go get code.google.com/p/go.tools/cmd/cover +script: + - $HOME/gopath/bin/goveralls -repotoken AkV7JNH7cHZ18wz5uanmFNsOMZAQptsMZ From e64208533a2a2703d3449580a9a4520d73bb12bb Mon Sep 17 00:00:00 2001 From: Arne Bahlo Date: Fri, 1 Aug 2014 19:57:46 +0200 Subject: [PATCH 4/4] Remove roadmap --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 8908e31..e47029a 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ _go-at_. Depends on how you like goats. - [Subrouters](#subrouters) - [Indices](#indices) - [Middleware](#middleware) -- [Roadmap](#roadmap) - [Philosophy](#philosophy) - [Fedback](#feedback) - [Credits](#credits) @@ -113,11 +112,6 @@ func main() { } ``` -## Roadmap -* [x] Subrouters or Grouping -* [x] Middleware -* [ ] Continous integration - ## Philosophy I wanted to create a small, fast and reliable REST API server, which supports quick JSON and error output, good rooting and easy-to-use middleware.