さまざまなグループ オブジェクトにアクセスできるように、インデックスを変数名に組み込むにはどうすればよいでしょうか。
これは私の db/seeds.rb ファイルです:
u = User.create( email: "yeah@foo.com", password: "yeah", password_confirmation: "yeah")
groups_list = ["Math Club", "Science Class", "Economics Class"]
groups_list.each_with_index do |name, index|
"g#{index}" = u.groups.create(name: name)
end