2010-12-14 67 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行爲。