Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
use dep as package manager
Browse files Browse the repository at this point in the history
  • Loading branch information
shixzie committed Jul 5, 2017
1 parent 20f99e6 commit 13cce4f
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 99 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# dependencies
vendor
21 changes: 21 additions & 0 deletions Gopkg.lock

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

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

# 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"

10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
help:
@echo "deps -> Get all dependencies"
@echo "parser -> Generates the sample parser"

deps:
@go get -u github.com/golang/dep/cmd/dep
@dep ensure

parser:
@pigeon -o "./parser/parser.go" "./parser/nlp.peg"
97 changes: 0 additions & 97 deletions coverage.txt

This file was deleted.

2 changes: 0 additions & 2 deletions gen.sh

This file was deleted.

0 comments on commit 13cce4f

Please sign in to comment.