Module: ExtlibCopy::Inflection
- Defined in:
- lib/inflection.rb
Overview
English Nouns Number Inflection.
This module provides english singular <-> plural noun inflections.
Class Attribute Summary collapse
-
.plural_of ⇒ Object
readonly
Returns the value of attribute plural_of.
-
.singular_of ⇒ Object
readonly
Returns the value of attribute singular_of.
Class Method Summary collapse
-
.camelize(lower_case_and_underscored_word, *args) ⇒ Object
By default, camelize converts strings to UpperCamelCase.
-
.classify(name) ⇒ Object
Take an underscored name and make it into a camelized name.
- .clear(type = :all) ⇒ Object
-
.constantize(camel_cased_word) ⇒ Object
Constantize tries to find a declared constant with the name specified in the string.
-
.demodulize(class_name_in_module) ⇒ Object
Removes the module part from the expression in the string.
-
.foreign_key(class_name, key = "id") ⇒ Object
Creates a foreign key name from a class name.
-
.humanize(lower_case_and_underscored_word) ⇒ Object
Capitalizes the first word and turns underscores into spaces and strips _id.
-
.plural(word) ⇒ Object
(also: pluralize)
Convert an English word from singular to plural.
-
.plural_rule(singular, plural) ⇒ Object
Define a plurualization rule.
-
.plural_word(singular, plural) ⇒ Object
Define a pluralization exception.
-
.pluralization_rules ⇒ Object
Read prepared pluralization rules.
-
.rule(singular, plural, whole_word = false) ⇒ Object
Define a general rule.
-
.singular(word) ⇒ Object
(also: singularize)
Convert an English word from plural to singular.
-
.singular_rule(singular, plural) ⇒ Object
Define a singularization rule.
-
.singular_word(singular, plural) ⇒ Object
Define a singularization exception.
-
.singularization_rules ⇒ Object
Read prepared singularization rules.
-
.tableize(class_name) ⇒ Object
Create the name of a table like Rails does for models to table names.
-
.underscore(camel_cased_word) ⇒ Object
The reverse of
camelize
. -
.word(singular, plural = nil) ⇒ Object
Defines a general inflection exception case.
Class Attribute Details
.plural_of ⇒ Object (readonly)
Returns the value of attribute plural_of.
291 292 293 |
# File 'lib/inflection.rb', line 291 def plural_of @plural_of end |
.singular_of ⇒ Object (readonly)
Returns the value of attribute singular_of.
291 292 293 |
# File 'lib/inflection.rb', line 291 def singular_of @singular_of end |
Class Method Details
.camelize(lower_case_and_underscored_word, *args) ⇒ Object
By default, camelize converts strings to UpperCamelCase.
camelize will also convert ‘/’ to ‘::’ which is useful for converting paths to namespaces
61 62 63 |
# File 'lib/inflection.rb', line 61 def camelize(lower_case_and_underscored_word, *args) lower_case_and_underscored_word.to_s.gsub(/\/(.?)/) { "::" + $1.upcase }.gsub(/(^|_)(.)/) { $2.upcase } end |
.classify(name) ⇒ Object
Take an underscored name and make it into a camelized name
47 48 49 50 51 |
# File 'lib/inflection.rb', line 47 def classify(name) words = name.to_s.sub(/.*\./, '').split('_') words[-1] = singularize(words[-1]) words.collect { |word| word.capitalize }.join end |
.clear(type = :all) ⇒ Object
167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/inflection.rb', line 167 def clear(type = :all) if type == :singular || type == :all @singular_of = {} @singular_rules = [] @singularization_rules, @singularization_regex = nil, nil end if type == :plural || type == :all @singular_of = {} @singular_rules = [] @singularization_rules, @singularization_regex = nil, nil end end |
.constantize(camel_cased_word) ⇒ Object
Constantize tries to find a declared constant with the name specified in the string. It raises a NameError when the name is not in CamelCase or is not initialized.
127 128 129 130 131 132 133 |
# File 'lib/inflection.rb', line 127 def constantize(camel_cased_word) unless /\A(?:::)?([A-Z]\w*(?:::[A-Z]\w*)*)\z/ =~ camel_cased_word raise NameError, "#{camel_cased_word.inspect} is not a valid constant name!" end Object.module_eval("::#{$1}", __FILE__, __LINE__) end |
.demodulize(class_name_in_module) ⇒ Object
Removes the module part from the expression in the string
93 94 95 |
# File 'lib/inflection.rb', line 93 def demodulize(class_name_in_module) class_name_in_module.to_s.gsub(/^.*::/, '') end |
.foreign_key(class_name, key = "id") ⇒ Object
Creates a foreign key name from a class name.
116 117 118 |
# File 'lib/inflection.rb', line 116 def foreign_key(class_name, key = "id") underscore(demodulize(class_name.to_s)) << "_" << key.to_s end |
.humanize(lower_case_and_underscored_word) ⇒ Object
Capitalizes the first word and turns underscores into spaces and strips _id. Like titleize, this is meant for creating pretty output.
84 85 86 |
# File 'lib/inflection.rb', line 84 def humanize(lower_case_and_underscored_word) lower_case_and_underscored_word.to_s.gsub(/_id$/, '').tr('_', ' ').capitalize end |
.plural(word) ⇒ Object Also known as: pluralize
Convert an English word from singular to plural.
"boy".plural #=> boys
"tomato".plural #=> tomatoes
Parameters
- word<String>
-
word to pluralize
Returns
- <String>
-
pluralized form of word
Notes
Aliased as pluralize (a Railism)
334 335 336 337 338 339 340 341 342 343 344 345 |
# File 'lib/inflection.rb', line 334 def plural(word) # special exceptions return "" if word == "" if result = plural_of[word] return result.dup end result = word.dup regex, hash = pluralization_rules result.sub!(regex) {|m| hash[m]} plural_of[word] = result return result end |
.plural_rule(singular, plural) ⇒ Object
Define a plurualization rule.
Parameters
- singular<String>
-
ending of the word in singular form
- plural<String>
-
ending of the word in plural form
Examples
Once the following rule is defined: English::Inflect.singular_rule ‘fe’, ‘ves’
You can see the following results: irb> “wife”.plural
> wives
266 267 268 |
# File 'lib/inflection.rb', line 266 def plural_rule(singular, plural) @plural_rules << [singular, plural] end |
.plural_word(singular, plural) ⇒ Object
Define a pluralization exception.
Parameters
- singular<String>
-
singular form of the word
- plural<String>
-
plural form of the word
200 201 202 203 |
# File 'lib/inflection.rb', line 200 def plural_word(singular, plural) @plural_of[singular] = plural @plural_of[singular.capitalize] = plural.capitalize end |
.pluralization_rules ⇒ Object
Read prepared pluralization rules.
282 283 284 285 286 287 288 289 |
# File 'lib/inflection.rb', line 282 def pluralization_rules if defined?(@pluralization_regex) && @pluralization_regex return [@pluralization_regex, @pluralization_hash] end @pluralization_regex = Regexp.new("(" + @plural_rules.map {|s,p| s}.join("|") + ")$", "i") @pluralization_hash = Hash[*@plural_rules.flatten] [@pluralization_regex, @pluralization_hash] end |
.rule(singular, plural, whole_word = false) ⇒ Object
Define a general rule.
Parameters
- singular<String>
-
ending of the word in singular form
- plural<String>
-
ending of the word in plural form
- whole_word<Boolean>
-
for capitalization, since words can be capitalized (Man => Men) #
Examples
Once the following rule is defined: English::Inflect.rule ‘y’, ‘ies’
You can see the following results: irb> “fly”.plural
> flies
irb> “cry”.plural
> cries
Define a general rule.
226 227 228 229 230 |
# File 'lib/inflection.rb', line 226 def rule(singular, plural, whole_word = false) singular_rule(singular, plural) plural_rule(singular, plural) word(singular, plural) if whole_word end |
.singular(word) ⇒ Object Also known as: singularize
Convert an English word from plural to singular.
"boys".singular #=> boy
"tomatoes".singular #=> tomato
Parameters
- word<String>
-
word to singularize
Returns
- <String>
-
singularized form of word
Notes
Aliased as singularize (a Railism)
306 307 308 309 310 311 312 313 314 315 |
# File 'lib/inflection.rb', line 306 def singular(word) if result = singular_of[word] return result.dup end result = word.dup regex, hash = singularization_rules result.sub!(regex) {|m| hash[m]} singular_of[word] = result return result end |
.singular_rule(singular, plural) ⇒ Object
Define a singularization rule.
Parameters
- singular<String>
-
ending of the word in singular form
- plural<String>
-
ending of the word in plural form
Examples
Once the following rule is defined: English::Inflect.singular_rule ‘o’, ‘oes’
You can see the following results: irb> “heroes”.singular
> hero
247 248 249 |
# File 'lib/inflection.rb', line 247 def singular_rule(singular, plural) @singular_rules << [singular, plural] end |
.singular_word(singular, plural) ⇒ Object
Define a singularization exception.
Parameters
- singular<String>
-
singular form of the word
- plural<String>
-
plural form of the word
188 189 190 191 |
# File 'lib/inflection.rb', line 188 def singular_word(singular, plural) @singular_of[plural] = singular @singular_of[plural.capitalize] = singular.capitalize end |
.singularization_rules ⇒ Object
Read prepared singularization rules.
271 272 273 274 275 276 277 278 279 |
# File 'lib/inflection.rb', line 271 def singularization_rules if defined?(@singularization_regex) && @singularization_regex return [@singularization_regex, @singularization_hash] end # No sorting needed: Regexen match on longest string @singularization_regex = Regexp.new("(" + @singular_rules.map {|s,p| p}.join("|") + ")$", "i") @singularization_hash = Hash[*@singular_rules.flatten].invert [@singularization_regex, @singularization_hash] end |
.tableize(class_name) ⇒ Object
Create the name of a table like Rails does for models to table names. This method uses the pluralize method on the last word in the string.
105 106 107 108 109 |
# File 'lib/inflection.rb', line 105 def tableize(class_name) words = class_name.to_const_path.tr('/', '_').split('_') words[-1] = pluralize(words[-1]) words.join('_') end |
.underscore(camel_cased_word) ⇒ Object
The reverse of camelize
. Makes an underscored form from the expression in the string.
Changes ‘::’ to ‘/’ to convert namespaces to paths.
74 75 76 |
# File 'lib/inflection.rb', line 74 def underscore(camel_cased_word) camel_cased_word.to_const_path end |
.word(singular, plural = nil) ⇒ Object
Defines a general inflection exception case.
Parameters
- singular<String>
-
singular form of the word
- plural<String>
-
plural form of the word
Examples
Here we define erratum/errata exception case:
English::Inflect.word “erratum”, “errata”
In case singular and plural forms are the same omit second argument on call:
English::Inflect.word ‘information’
161 162 163 164 165 |
# File 'lib/inflection.rb', line 161 def word(singular, plural=nil) plural = singular unless plural singular_word(singular, plural) plural_word(singular, plural) end |