class ActiveRecord::Reflection::AssociationReflection

def create_association(*options)

creation method. Returns the newly created object.
with ActiveRecord::Base#save. +options+ will be passed to the class's
Creates a new instance of the associated class, and immediates saves it
def create_association(*options)
  klass.create(*options)
end