2010-12-14 2 views

ответ

0

Английские правила находятся в ActiveSupport (в частности, в lib/active_support/inflections.rb).

1

Файл ActiveSupport inflector.rb содержит все библиотеки и модули перегиба.

Если вы хотите его настроить, в пути Rails config/initializers есть файл с именем inflections.rb.

По умолчанию он содержит

# Be sure to restart your server when you modify this file. 

# Add new inflection rules using the following format 
# (all these examples are active by default): 
# ActiveSupport::Inflector.inflections do |inflect| 
# inflect.plural /^(ox)$/i, '\1en' 
# inflect.singular /^(ox)en/i, '\1' 
# inflect.irregular 'person', 'people' 
# inflect.uncountable %w(fish sheep) 
# end 

Вы можете изменить его, чтобы настроить Inflector поведение.

Смежные вопросы