0
を使用していないモデルを生成し、私はRailsは、私はRailsの5.1の「ステータス」モデルを生成しようとしている変曲ルール
rails generate model status
を実行したときに、私は
The model name 's' was recognized as a plural, using the singular '' instead. Override with --force-plural or setup custom inflection rules for this noun before running the generator.
は、私は、新しいルールを追加取得しますconfig/initializers/inflections.rb
ActiveSupport::Inflector.inflections(:en) do |inflect|
inflect.irregular 'status', 'statuses'
end
このコマンドをもう一度実行しても、エラーが表示されます。
私には何が欠けていますか?
述べています。 – Iceman