-
Notifications
You must be signed in to change notification settings - Fork 75
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
94e131e
commit d92af5b
Showing
3 changed files
with
37 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 |
---|---|---|
@@ -1 +1,3 @@ | ||
Pull requests should be made against the 'develop' branch, not master. | ||
|
||
@Workiva/messaging-pp @Workiva/product2 |
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 @@ | ||
|
||
.PHONY: all | ||
all: install | ||
|
||
# Installs dependencies while sym linking the local frugal into the | ||
# vendor folder so local changes can be easily tested | ||
.PHONY: install | ||
install: | ||
rm -rf vendor && \ | ||
glide install && \ | ||
rm -rf vendor/github.com/Workiva/frugal/lib/go && \ | ||
ln -s ${GOPATH}/src/github.com/Workiva/frugal/lib/go vendor/github.com/Workiva/frugal/lib/go | ||
|
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,22 @@ | ||
package: github.com/Workiva/frugal/examples/go | ||
import: | ||
- package: git.apache.org/thrift.git | ||
subpackages: | ||
- lib/go/thrift | ||
version: 0.10.0 | ||
- package: github.com/Sirupsen/logrus | ||
repo: [email protected]:/sirupsen/logrus | ||
vcs: git | ||
version: ^v1.0.5 | ||
- package: github.com/Workiva/frugal | ||
subpackages: | ||
- lib/go | ||
version: 2.17.0 | ||
- package: github.com/nats-io/go-nats | ||
version: 6b6bf392d34d01f57cc563ae123f00c13778bd57 | ||
- package: github.com/rs/cors | ||
version: v1.3.0 | ||
- package: golang.org/x/sys | ||
version: b126b21c05a91c856b027c16779c12e3bf236954 | ||
subpackages: | ||
- unix |