参考RailsCastsで紹介されてたフォームがGemになってたので試してみた railscasts.com/episodes/196-nested-model-form-revised?view=asciicast github.com/ryanb/nested_form Rails4で 1対多、多対多関連しているときのフォームを作るなら、Nested Form Gemが便利 前提の環境Modelにhas_manyとaccepts_nested_attributes_forが書いてある 関連するモデルの削除を許すなら allow_destroy: true オプションを付けておく class Project < ActiveRecord::Base has_many :tasks accepts_nested_attributes_for :tasks, allow_destroy: t