3eaacc01ae
- update k8s client_go - update k8s apiextensions-apiserver - update k8s controller-tools Signed-off-by: leonnicolas <leonloechner@gmx.de> |
||
---|---|---|
.. | ||
.gitignore | ||
.gometalinter.json | ||
acronyms.go | ||
camelize.go | ||
capitalize.go | ||
custom_data.go | ||
dasherize.go | ||
flect.go | ||
humanize.go | ||
ident.go | ||
LICENSE | ||
lower_upper.go | ||
Makefile | ||
ordinalize.go | ||
pascalize.go | ||
plural_rules.go | ||
pluralize.go | ||
README.md | ||
rule.go | ||
SHOULDERS.md | ||
singular_rules.go | ||
singularize.go | ||
titleize.go | ||
underscore.go | ||
version.go |
Flect
This is a new inflection engine to replace https://github.com/markbates/inflect designed to be more modular, more readable, and easier to fix issues on than the original.
Installation
$ go get -u -v github.com/gobuffalo/flect
github.com/gobuffalo/flect
The github.com/gobuffalo/flect
package contains "basic" inflection tools, like pluralization, singularization, etc...
The Ident
Type
In addition to helpful methods that take in a string
and return a string
, there is an Ident
type that can be used to create new, custom, inflection rules.
The Ident
type contains two fields.
Original
- This is the originalstring
that was used to create theIdent
Parts
- This is a[]string
that represents all of the "parts" of the string, that have been split apart, making the segments easier to work with
Examples of creating new inflection rules using Ident
can be found in the github.com/gobuffalo/flect/name
package.
github.com/gobuffalo/flect/name
The github.com/gobuffalo/flect/name
package contains more "business" inflection rules like creating proper names, table names, etc...