Module: Strings::Inflection::Verbs
- Defined in:
- lib/strings/inflection/verbs.rb
Class Method Summary collapse
-
.plurals ⇒ Array[String]
private
A list of plural rules.
-
.singulars ⇒ Array[String]
private
A list of singular rules.
-
.uninflected ⇒ Array[String]
private
A set of uninflected verbs.
Class Method Details
.plurals ⇒ Array[String]
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
A list of plural rules
124 125 126 |
# File 'lib/strings/inflection/verbs.rb', line 124 def plurals @plurals end |
.singulars ⇒ Array[String]
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
A list of singular rules
114 115 116 |
# File 'lib/strings/inflection/verbs.rb', line 114 def singulars @singulars end |
.uninflected ⇒ Array[String]
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
A set of uninflected verbs
104 105 106 |
# File 'lib/strings/inflection/verbs.rb', line 104 def uninflected @uninflected end |