-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1448341
commit 2334aea
Showing
34 changed files
with
99 additions
and
69 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
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
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,23 @@ | ||
export ROOT:=$(realpath $(dir $(firstword $(MAKEFILE_LIST)))) | ||
SUBDIRS := $(wildcard */*/go.mod) | ||
|
||
test: $(addsuffix -test,$(SUBDIRS)) | ||
go test -v | ||
|
||
update: $(addsuffix -update,$(SUBDIRS)) | ||
go get -u . | ||
|
||
tidy: $(addsuffix -tidy,$(SUBDIRS)) | ||
go mod tidy | ||
|
||
$(addsuffix -test,$(SUBDIRS)): | ||
cd $(shell dirname $(ROOT)/$@) && go test -v | ||
|
||
$(addsuffix -update,$(SUBDIRS)): | ||
cd $(shell dirname $(ROOT)/$@) && go get -u | ||
|
||
$(addsuffix -tidy,$(SUBDIRS)): | ||
cd $(shell dirname $(ROOT)/$@) && go mod tidy | ||
|
||
|
||
.PHONY: all $(SUBDIRS) |
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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module github.com/fzerorubigd/onion/ciphers/secconf | ||
module github.com/goraz/onion/ciphers/secconf | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/fzerorubigd/onion v0.0.0-20190622125020-5b1e62e21309 | ||
github.com/goraz/onion v0.0.0-20190706114413-1448341d7b2b | ||
golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4 | ||
) | ||
|
||
replace github.com/fzerorubigd/onion => ../../ | ||
replace github.com/goraz/onion => ../../ |
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
module github.com/fzerorubigd/onion | ||
module github.com/goraz/onion | ||
|
||
go 1.13 | ||
|
||
require ( | ||
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect | ||
github.com/mattn/goveralls v0.0.2 // indirect | ||
github.com/smartystreets/assertions v1.0.0 // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a | ||
) |
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
module github.com/fzerorubigd/onion/layers/filewatchlayer | ||
module github.com/goraz/onion/layers/filewatchlayer | ||
|
||
go 1.13 | ||
|
||
replace github.com/fzerorubigd/onion => ../../ | ||
replace github.com/goraz/onion => ../../ | ||
|
||
require ( | ||
github.com/fsnotify/fsnotify v1.4.7 | ||
github.com/fzerorubigd/onion v1.0.0 | ||
github.com/goraz/onion v0.0.0-20190706114413-1448341d7b2b | ||
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a | ||
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect | ||
) |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module github.com/fzerorubigd/onion/layers/structlayer | ||
module github.com/goraz/onion/layers/structlayer | ||
|
||
go 1.13 | ||
|
||
replace github.com/fzerorubigd/onion => ../../ | ||
replace github.com/goraz/onion => ../../ | ||
|
||
require ( | ||
github.com/fzerorubigd/onion v1.0.0 | ||
github.com/goraz/onion v0.0.0-20190706114413-1448341d7b2b | ||
github.com/mitchellh/mapstructure v1.1.2 | ||
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a | ||
) |
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
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module github.com/fzerorubigd/onion/loaders/properties | ||
module github.com/goraz/onion/loaders/properties | ||
|
||
go 1.13 | ||
|
||
replace github.com/fzerorubigd/onion => ../../ | ||
replace github.com/goraz/onion => ../../ | ||
|
||
require ( | ||
github.com/fzerorubigd/onion v1.0.0 | ||
github.com/goraz/onion v0.0.0-20190706114413-1448341d7b2b | ||
github.com/magiconair/properties v1.8.1 | ||
github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a | ||
) |
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
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
Oops, something went wrong.