Flowdock
method

build

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActiveRecord::Associations::HasOneAssociation
build(attrs = {}, replace_existing = true) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/associations/has_one_association.rb, line 23
      def build(attrs = {}, replace_existing = true)
        new_record(replace_existing) do |reflection|
          attrs = merge_with_conditions(attrs)
          reflection.build_association(attrs)
        end
      end
Register or log in to add new notes.