From 9fef081c545aeb16210d09a9823d4cd5be02eeaa Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Mon, 13 May 2019 23:42:28 -0400 Subject: [PATCH] using dep, and gitignore --- .gitignore | 23 +++++++++++++++++++++++ Gopkg.lock | 39 +++++++++++++++++++++++++++++++++++++++ Gopkg.toml | 11 +++++++++++ 3 files changed, 73 insertions(+) create mode 100644 .gitignore create mode 100644 Gopkg.lock create mode 100644 Gopkg.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..19378b4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +# Created by https://www.gitignore.io/api/go +# Edit at https://www.gitignore.io/?templates=go + +### Go ### +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +### Go Patch ### +/vendor/ +/Godeps/ + +# End of https://www.gitignore.io/api/go + diff --git a/Gopkg.lock b/Gopkg.lock new file mode 100644 index 0000000..08c621c --- /dev/null +++ b/Gopkg.lock @@ -0,0 +1,39 @@ +# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. + + +[[projects]] + name = "github.com/bmatcuk/doublestar" + packages = ["."] + revision = "85a78806aa1b4707d1dbace9be592cf1ece91ab3" + version = "v1.1.1" + +[[projects]] + name = "github.com/davecgh/go-spew" + packages = ["spew"] + revision = "8991bc29aa16c548c550c7ff78260e27b9ab7c73" + version = "v1.1.1" + +[[projects]] + name = "github.com/pmezard/go-difflib" + packages = ["difflib"] + revision = "792786c7400a136282c1664665ae0a8db921c6c2" + version = "v1.0.0" + +[[projects]] + name = "github.com/stretchr/testify" + packages = ["assert"] + revision = "ffdc059bfe9ce6a4e144ba849dbedead332c6053" + version = "v1.3.0" + +[[projects]] + name = "github.com/urfave/cli" + packages = ["."] + revision = "cfb38830724cc34fedffe9a2a29fb54fa9169cd1" + version = "v1.20.0" + +[solve-meta] + analyzer-name = "dep" + analyzer-version = 1 + inputs-digest = "be8c627db585121cb01536263b02ee4e0aa4ff2fcef6c2909e5dcd2e93c0d7ea" + solver-name = "gps-cdcl" + solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml new file mode 100644 index 0000000..23d77b4 --- /dev/null +++ b/Gopkg.toml @@ -0,0 +1,11 @@ +[[constraint]] + name = "github.com/bmatcuk/doublestar" + version = "1.1.1" + +[[constraint]] + name = "github.com/stretchr/testify" + version = "1.3.0" + +[[constraint]] + name = "github.com/urfave/cli" + version = "1.20.0"