diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2021-04-05 09:37:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 09:37:20 +0000 |
commit | ed5ad8cac44119f33ab595cb790a8603a53569c9 (patch) | |
tree | f03137aa61aa8a989e8dd1df47a93a38707533a0 /vendor/github.com/go-task/slim-sprig/doc.go | |
parent | 6ca4bc3fe4f9f96f8c9deca5db5138d68857a831 (diff) | |
download | podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.tar.gz podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.tar.bz2 podman-ed5ad8cac44119f33ab595cb790a8603a53569c9.zip |
Bump github.com/onsi/ginkgo from 1.15.2 to 1.16.0
Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.15.2 to 1.16.0.
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](https://github.com/onsi/ginkgo/compare/v1.15.2...v1.16.0)
Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/go-task/slim-sprig/doc.go')
-rw-r--r-- | vendor/github.com/go-task/slim-sprig/doc.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/github.com/go-task/slim-sprig/doc.go b/vendor/github.com/go-task/slim-sprig/doc.go new file mode 100644 index 000000000..aabb9d448 --- /dev/null +++ b/vendor/github.com/go-task/slim-sprig/doc.go @@ -0,0 +1,19 @@ +/* +Package sprig provides template functions for Go. + +This package contains a number of utility functions for working with data +inside of Go `html/template` and `text/template` files. + +To add these functions, use the `template.Funcs()` method: + + t := templates.New("foo").Funcs(sprig.FuncMap()) + +Note that you should add the function map before you parse any template files. + + In several cases, Sprig reverses the order of arguments from the way they + appear in the standard library. This is to make it easier to pipe + arguments into functions. + +See http://masterminds.github.io/sprig/ for more detailed documentation on each of the available functions. +*/ +package sprig |