Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ go:
- 1.8
- 1.9
- tip
before_install:
- go get -v -u github.com/golang/dep/cmd/dep
install:
- go get -t ./...
- dep ensure -v
- go build -o ./bin/drive-google -v ./drive-google
- go build -o ./bin/drive-gen -v ./drive-gen
script:
go test -v -race -cover ./src/...
231 changes: 231 additions & 0 deletions Gopkg.lock

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

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

# 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/boltdb/bolt"
version = "1.3.1"

[[constraint]]
name = "github.com/cheggaaa/pb"
version = "2.0.6"

[[constraint]]
name = "github.com/go-martini/martini"
version = "1.0.0"

[[constraint]]
branch = "master"
name = "github.com/martini-contrib/binding"

[[constraint]]
name = "github.com/mattn/go-isatty"
version = "0.0.3"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/cache"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/cli-spinner"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/command"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/exponential-backoff"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/extractor"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/go-utils"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/log"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/meddler"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/namespace"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/pretty-words"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/ripper"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/rsc"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/semalim"

[[constraint]]
branch = "master"
name = "github.com/odeke-em/statos"

[[constraint]]
branch = "master"
name = "github.com/skratchdot/open-golang"

[[constraint]]
branch = "master"
name = "golang.org/x/crypto"

[[constraint]]
branch = "master"
name = "golang.org/x/net"

[[constraint]]
branch = "master"
name = "golang.org/x/oauth2"

[[constraint]]
branch = "master"
name = "google.golang.org/api"
Loading