-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(+semver: feature) Add git crawler (#1)
Signed-off-by: Joshua Benjamin <[email protected]>
- Loading branch information
1 parent
ee63e23
commit a8eb8e9
Showing
419 changed files
with
100,160 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,5 @@ | |
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
artifacts/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.