我有很多 belongs_to 关系
belongs_to :breed
belongs_to :category
belongs_to :color
belongs_to :country
belongs_to :city
belongs_to :user
我把它折叠到
[:breed, :category, :color, :country, :city, :user].each { |r| belongs_to r }
问题是:是否有可能更崩溃
[:breed, :category, :color, :country, :city, :user].belongs_to
以及如何编写这样的代码
或类似的东西
[:breed, :category, :color, :country, :city, :user].each &:belongs_to
或更优雅的东西