Skip to content

Commit

Permalink
(+semver: feature) Add git crawler (#1)
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Benjamin <[email protected]>
  • Loading branch information
annymsMthd authored Aug 4, 2018
1 parent ee63e23 commit a8eb8e9
Show file tree
Hide file tree
Showing 419 changed files with 100,160 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

artifacts/
7 changes: 7 additions & 0 deletions .travis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: go

go:
- "1.10.x"

go_import_path: github.com/annymsMthd/gogitver

188 changes: 188 additions & 0 deletions Gopkg.lock

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

11 changes: 11 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[[constraint]]
name = "github.com/coreos/go-semver"
version = "0.2.0"

[[constraint]]
name = "gopkg.in/src-d/go-git.v4"
version = "4.5.0"

[prune]
go-tests = true
unused-packages = true
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
BUILD_PATH := artifacts/gogitver

version: build
$(BUILD_PATH)

deps:
@which dep 2>/dev/null || go get -u ./...
@dep ensure -v

build: deps
@go build -o $(BUILD_PATH) cmd/gogitver/main.go

.PHONY: version
Loading

0 comments on commit a8eb8e9

Please sign in to comment.