Skip to content

Commit

Permalink
Merge pull request #31 from foodora/NO-TICKET-use-go-dep-dependency-m…
Browse files Browse the repository at this point in the history
…anager

NO-TICKET use go dep instead of glide
  • Loading branch information
fabioesposito authored Dec 19, 2017
2 parents 780ac6e + 0848fdc commit f920877
Show file tree
Hide file tree
Showing 6 changed files with 149 additions and 65 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ sudo: false
go:
- 1.9
install:
- go get github.com/Masterminds/glide
- go get github.com/golang/dep/cmd/dep
- if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- $GOPATH/bin/glide install
- go test $($GOPATH/bin/glide novendor)
- $GOPATH/bin/dep ensure
- go test ./...
87 changes: 87 additions & 0 deletions Gopkg.lock

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

58 changes: 58 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@

# Gopkg.toml example
#
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"


[[constraint]]
name = "github.com/bshuster-repo/logrus-logstash-hook"
version = "1.0.0-beta"

[[constraint]]
branch = "master"
name = "github.com/johntdyer/slackrus"

[[constraint]]
name = "github.com/julienschmidt/httprouter"
version = "1.1.0"

[[constraint]]
branch = "master"
name = "github.com/justinas/alice"

[[constraint]]
name = "github.com/newrelic/go-agent"
version = "1.11.0"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.0.4"

[[constraint]]
name = "github.com/tomnomnom/linkheader"
version = "0.1.0"

[[constraint]]
name = "gopkg.in/throttled/throttled.v2"
version = "2.0.3"

[[constraint]]
branch = "v2"
name = "gopkg.in/yaml.v2"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ See more on ```example.go```

# Libraries used

See ```glide.yaml```
See ```Gopkg.toml```
40 changes: 0 additions & 40 deletions glide.lock

This file was deleted.

21 changes: 0 additions & 21 deletions glide.yaml

This file was deleted.

0 comments on commit f920877

Please sign in to comment.