Skip to content

Commit

Permalink
Dependencies are now managed with dep
Browse files Browse the repository at this point in the history
  • Loading branch information
schemar committed Mar 11, 2018
1 parent 0a34cd2 commit b349c73
Show file tree
Hide file tree
Showing 769 changed files with 286,377 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: go

install: go get -t -v ./...
script: |
#!/usr/bin/env bash
Expand All @@ -18,5 +17,4 @@ after_success:
- bash <(curl -s https://codecov.io/bash)

go:
- 1.7
- 1.8
- 1.9
220 changes: 220 additions & 0 deletions Gopkg.lock

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

74 changes: 74 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# 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"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true


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

[[constraint]]
name = "github.com/codegangsta/cli"
version = "^1.20.0"

[[constraint]]
name = "github.com/davecgh/go-spew"
version = "^1.1.0"

[[constraint]]
branch = "master"
name = "github.com/etcinit/gonduit"

[[constraint]]
branch = "master"
name = "github.com/facebookgo/inject"

[[constraint]]
branch = "master"
name = "github.com/fluffle/goirc"

[[constraint]]
name = "github.com/gin-gonic/gin"
version = "^1.2.0"

[[constraint]]
name = "github.com/golang/mock"
version = "^1.0.0"

[[constraint]]
name = "github.com/jacobstr/confer"
version = "^0.1.0"

[[constraint]]
name = "github.com/nlopes/slack"
version = "^0.2.0"

[[constraint]]
name = "github.com/stretchr/testify"
version = "^1.2.1"

[prune]
go-tests = true
unused-packages = true
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ information about Phabulous.

## Compiling from source

To compile Phabulous, you need a recent version of Go (>= 1.7):
To compile Phabulous, you need a recent version of [Go](https://golang.org/) (>= 1.9) and [dep](https://golang.github.io/dep/):

```
go get github.com/etcinit/phabulous/cmd/phabulous
Expand All @@ -48,6 +48,5 @@ go get github.com/etcinit/phabulous/cmd/phabulous
go get github.com/laher/goxc
git clone [email protected]:etcinit/phabulous.git
cd phabulous
go get ./... && go get github.com/stretchr/testify
make
```
5 changes: 5 additions & 0 deletions vendor/github.com/BurntSushi/toml/.gitignore

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

15 changes: 15 additions & 0 deletions vendor/github.com/BurntSushi/toml/.travis.yml

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

3 changes: 3 additions & 0 deletions vendor/github.com/BurntSushi/toml/COMPATIBLE

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

14 changes: 14 additions & 0 deletions vendor/github.com/BurntSushi/toml/COPYING

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

19 changes: 19 additions & 0 deletions vendor/github.com/BurntSushi/toml/Makefile

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

Loading

0 comments on commit b349c73

Please sign in to comment.