-
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.
Merge pull request #987 from Workiva/release_2_17_0
INFENG-5441 Release 2.17.0
- Loading branch information
Showing
1,276 changed files
with
199,576 additions
and
140,440 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 |
---|---|---|
|
@@ -33,28 +33,28 @@ releases tab. Currently, adding these binaries is a manual process. If | |
a downloadable release is missing, notify the messaging team to have it | ||
added. | ||
|
||
### From Source | ||
|
||
1. Install [go](https://golang.org/doc/install) and setup [`GOPATH`](https://github.com/golang/go/wiki/GOPATH). | ||
1. Install [godep](https://github.com/tools/godep). | ||
1. Get the frugal source code | ||
If go is already installed and setup you can also simply: | ||
|
||
```bash | ||
$ go get github.com/Workiva/frugal | ||
``` | ||
```bash | ||
$ go get github.com/Workiva/frugal | ||
``` | ||
|
||
Or you can manually clone the frugal repo | ||
### From Source | ||
**Our usage of godep has been deprecated as we move to glide. Once the deprecation period is over, we will remove both the Godeps/ and vendor/ folder, relying solely on glide for dependency management** | ||
1. Install [go](https://golang.org/doc/install) and setup [`GOPATH`](https://github.com/golang/go/wiki/GOPATH). | ||
1. Clone the frugal repo | ||
|
||
```bash | ||
$ mkdir -p $GOPATH/src/github.com/Workiva/ | ||
$ cd $GOPATH/src/github.com/Workiva | ||
$ mkdir -p $GOPATH/src/github.com/Workiva && cd $_ | ||
$ git clone [email protected]:Workiva/frugal.git | ||
``` | ||
|
||
1. Install frugal with godep | ||
1. Install the CLI binary | ||
```bash | ||
$ cd $GOPATH/src/github.com/Workiva/frugal | ||
$ godep go install | ||
$ curl https://glide.sh/get | sh # get glide if necessary | ||
$ glide install # get dependencies | ||
$ go install | ||
``` | ||
|
||
When generating go, be aware the frugal go library and the frugal compiler | ||
|
@@ -215,7 +215,7 @@ Some common annotations are listed below | |
| Annotation | Values | Allowed Places | Description | ||
| ------------- | ------------- | -------------- | ----------- | ||
| vendor | Optional location | Namespaces, Includes | See [vendoring includes](#vendoring-includes) | ||
| deprecated | Optional description | Service methods | Marks a method as deprecated (if supported by the language) and logs a warning if the method is called. | ||
| deprecated | Optional description | Service methods, Struct/union/exception fields | Marks a method or field as deprecated (if supported by the language, or in a comment otherwise), and logs a warning if a deprecated method is called. | ||
|
||
### Vendoring Includes | ||
|
||
|
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
Oops, something went wrong.