Moving to godep for dependency management

This commit is contained in:
Frederick F. Kautz IV
2014-11-03 20:59:07 -08:00
parent 74f989e3ce
commit e98a77ff1a
49 changed files with 74 additions and 1513 deletions
+31
View File
@@ -0,0 +1,31 @@
Dependencies
============
* go1.3.3
* godep
* go get github.com/tools/godep
Dependency management
=====================
Install or updating a new dependency
------------------------------------
```sh
go get -u github.com/example/dependency
# import github.com/example/dependency in go src code
godep save ./...
```
Commit all Godep/ modifications, including vendorized files.
Restoring dev environment dependencies
--------------------------------------
```sh
godep restore
```
Compiling
=========
```sh
make
```