method
create
create(attrs = {}, replace_existing = true)
public
Hide source
# File activerecord/lib/active_record/associations/has_one_association.rb, line 9 def create(attrs = {}, replace_existing = true) new_record(replace_existing) do |reflection| attrs = merge_with_conditions(attrs) reflection.create_association(attrs) end end