Failure/Error: c = myKindel.ebooks.create!(:name => "book1")
NoMethodError:
undefined method `create!' for []:Array
This is the way it does work:
c1 = Ebook.create!(:name => "book1", :kindel_id => myKindel.id )
c2 = Ebook.create!(:name => "book2", :kindel_id => myKindel.id)
myKindel.ebooks = [c1,c2]