-
Add the dependency to your
shard.yml
:dependencies: cadmium_inflector: github: cadmiumcr/inflector
-
Run
shards install
require "cadmium_inflector"
Nouns can be inflected using the NounInflector
which has also been attached to the String
class.
inflector = Cadmium.noun_inflector.new
inflector.pluralize("radius")
# => radii
inflector.singularize("radii")
# => radius
"person".pluralize
# => people
"people".singularize
# => person
Present tense verbs can be inflected with the PresentVerbInflector
. This has also been attached to the string class.
inflector = Cadmium.present_verb_inflector.new
inflector.singularize("become")
# => became
inflector.pluralize("became")
# => become
"walk".singularize(false) # noun: false
# => walks
"walks".pluralize(false) # noun: false
# => walk
Numbers can be inflected with the CountInflector
which also adds a method to_nth
to the Int
class.
Cadmium.count_inflector.nth(1)
# => 1st
Cadmium.count_inflector.nth(111)
# => 111th
153.to_nth
# => 153rd
- Fork it (https://github.com/your-github-user/cadmium_inflectors/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Chris Watson - creator and maintainer