Skip to content

Commit

Permalink
Initial checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
christiangalsterer committed Nov 22, 2015
0 parents commit 966f778
Show file tree
Hide file tree
Showing 280 changed files with 42,693 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .gitignore
@@ -0,0 +1,40 @@
# script python
scripts/env

# Compiled Object files, Static and Dynamic libs (Shared Objects)
httpbeat
*.o
*.a
*.so
*.swp
*.swo
*.iml


*.dev.yml

# Folders
_obj
_test

# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out

*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*

_testmain.go

*.exe
*.test
*.prof

cover/
profile.cov
.idea
.DS_Store
/docs/html_docs
30 changes: 30 additions & 0 deletions .travis.yml
@@ -0,0 +1,30 @@
language: go

go:
- 1.5.1

sudo: false

before_install:
# Redo the travis setup but with the christiangalsterer/httpbeat path. This is needed so the package path is correct
- mkdir -p $HOME/gopath/src/github.com/christiangalsterer/httpbeat
- rsync -az ${TRAVIS_BUILD_DIR}/ $HOME/gopath/src/github.com/christiangalsterer/httpbeat/
- export TRAVIS_BUILD_DIR=$HOME/gopath/src/github.com/christiangalsterer/httpbeat
- cd $HOME/gopath/src/github.com/christiangalsterer/httpbeat
- go get github.com/stretchr/testify/...

install:
- make

script:
- make cover

notifications:
hipchat:
rooms:
secure:

after_success:
# Copy profile.cov to coverage.txt because codecov.io requires this file
- cp profile.cov coverage.txt
- bash <(curl -s https://codecov.io/bash)
61 changes: 61 additions & 0 deletions Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Godeps/Readme

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Godeps/_workspace/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 966f778

Please sign in to comment.