leonnicolas 36643b77b4 Use apiextension v1 4 gadi atpakaļ
..
.gitignore 36643b77b4 Use apiextension v1 4 gadi atpakaļ
.gometalinter.json 36643b77b4 Use apiextension v1 4 gadi atpakaļ
LICENSE 36643b77b4 Use apiextension v1 4 gadi atpakaļ
Makefile 36643b77b4 Use apiextension v1 4 gadi atpakaļ
README.md 36643b77b4 Use apiextension v1 4 gadi atpakaļ
SHOULDERS.md 36643b77b4 Use apiextension v1 4 gadi atpakaļ
acronyms.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
camelize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
capitalize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
custom_data.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
dasherize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
flect.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
go.mod 36643b77b4 Use apiextension v1 4 gadi atpakaļ
go.sum 36643b77b4 Use apiextension v1 4 gadi atpakaļ
humanize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
ident.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
lower_upper.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
ordinalize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
pascalize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
plural_rules.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
pluralize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
rule.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
singular_rules.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
singularize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
titleize.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
underscore.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ
version.go 36643b77b4 Use apiextension v1 4 gadi atpakaļ

README.md

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...