golang-github-qor-inflection 0.0~git20151009.0.3272df6-2 source package in Ubuntu
Changelog
golang-github-qor-inflection (0.0~git20151009.0.3272df6-2) unstable; urgency=medium [ Paul Tagliamonte ] * Team upload. * Use a secure transport for the Vcs-Git and Vcs-Browser URL [ Alexandre Viau ] * Point Vcs-* urls to salsa.debian.org. * Fix insecure-copyright-format-uri. * Set Testsuite: autopkgtest-pkg-go. -- Alexandre Viau <email address hidden> Wed, 18 Apr 2018 02:25:08 -0400
Upload details
- Uploaded by:
- Debian Go Packaging Team
- Uploaded to:
- Sid
- Original maintainer:
- Debian Go Packaging Team
- Architectures:
- all
- Section:
- misc
- Urgency:
- Medium Urgency
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
golang-github-qor-inflection_0.0~git20151009.0.3272df6-2.dsc | 2.3 KiB | 6f808a0c476cd8eec801527f0adcfc2e15c828664434d9754980fb3109e0b725 |
golang-github-qor-inflection_0.0~git20151009.0.3272df6.orig.tar.xz | 3.0 KiB | 416f973ab1338c2effe0821721bbbc6da65528692abff2780cd1c8d17f3c7f59 |
golang-github-qor-inflection_0.0~git20151009.0.3272df6-2.debian.tar.xz | 2.5 KiB | c1b18020bbf4f1a388538c5833a15930e462dfad0a259852a70e2cbbff70b06c |
Available diffs
No changes file available.
Binary packages built by this source
- golang-github-qor-inflection-dev: Pluralizes and singularizes English nouns
Inflection is a Go package that pluralizes and singularizes English nouns.
.
inflection.Plural( "person" ) => "people"
inflection.Plural( "Person" ) => "People"
inflection.Plural( "PERSON" ) => "PEOPLE"
inflection.Plural( "bus") => "buses"
inflection.Plural( "BUS") => "BUSES"
inflection.Plural( "Bus") => "Buses"
.
inflection.Singularize( "people" ) => "person"
inflection.Singularize( "People" ) => "Person"
inflection.Singularize( "PEOPLE" ) => "PERSON"
inflection.Singularize( "buses" ) => "bus"
inflection.Singularize( "BUSES" ) => "BUS"
inflection.Singularize( "Buses" ) => "Bus"
.
inflection.Plural( "FancyPerson" ) => "FancyPeople"
inflection.Singularize( "FancyPeople" ) => "FancyPerson"
.
Standard rules are from Rails's ActiveSupport.
.
This package contains the source.