kilo/vendor/github.com/gobuffalo/flect
leonnicolas 3eaacc01ae
go.*: Update k8s packages
- update k8s client_go
 - update k8s apiextensions-apiserver
 - update k8s controller-tools

Signed-off-by: leonnicolas <leonloechner@gmx.de>
2022-04-23 11:09:50 +02:00
..
.gitignore Use apiextension v1 2021-06-14 12:59:33 +02:00
.gometalinter.json Use apiextension v1 2021-06-14 12:59:33 +02:00
acronyms.go Use apiextension v1 2021-06-14 12:59:33 +02:00
camelize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
capitalize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
custom_data.go Use apiextension v1 2021-06-14 12:59:33 +02:00
dasherize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
flect.go Use apiextension v1 2021-06-14 12:59:33 +02:00
humanize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
ident.go Use apiextension v1 2021-06-14 12:59:33 +02:00
LICENSE Use apiextension v1 2021-06-14 12:59:33 +02:00
lower_upper.go Use apiextension v1 2021-06-14 12:59:33 +02:00
Makefile Use apiextension v1 2021-06-14 12:59:33 +02:00
ordinalize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
pascalize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
plural_rules.go go.*: Update k8s packages 2022-04-23 11:09:50 +02:00
pluralize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
README.md Use apiextension v1 2021-06-14 12:59:33 +02:00
rule.go Use apiextension v1 2021-06-14 12:59:33 +02:00
SHOULDERS.md Use apiextension v1 2021-06-14 12:59:33 +02:00
singular_rules.go Use apiextension v1 2021-06-14 12:59:33 +02:00
singularize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
titleize.go Use apiextension v1 2021-06-14 12:59:33 +02:00
underscore.go Use apiextension v1 2021-06-14 12:59:33 +02:00
version.go Use apiextension v1 2021-06-14 12:59:33 +02:00

Flect

GoDoc CI Go Report Card

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

GoDoc

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 original string that was used to create the Ident
  • 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

GoDoc

The github.com/gobuffalo/flect/name package contains more "business" inflection rules like creating proper names, table names, etc...