2010-12-14 76 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行为。