7 lines
212 B
Ruby
7 lines
212 B
Ruby
ActiveSupport::Inflector.inflections do |inflect|
|
|
# inflect.plural /^(ox)$/i, '\1en'
|
|
# inflect.singular /^(ox)en/i, '\1'
|
|
# inflect.irregular 'person', 'people'
|
|
inflect.uncountable %w( user_feedback )
|
|
end
|