carlosbrando (owner)

Revisions

gist: 2924 Download_button fork
public
Public Clone URL: git://gist.github.com/2924.git
Embed All Files: show embed
Text #
1
2
3
4
5
6
7
8
9
10
class Post < ActiveRecord::Base
  has_many :comments
 
  def comments=(attrs_array)
    attrs_array.each do |attrs|
      comments.create(attrs)
    end
  end
end