Flowdock
method

create_record

Importance_0
v3.2.1 - Show latest stable - 0 notes - Class: SingularAssociation
create_record(attributes, options, raise_error = false) private

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/singular_association.rb, line 54
        def create_record(attributes, options, raise_error = false)
          record = build_record(attributes, options)
          yield(record) if block_given?
          saved = record.save
          set_new_record(record)
          raise RecordInvalid.new(record) if !saved && raise_error
          record
        end
Register or log in to add new notes.