# frozen_string_literal: true module ActiveRecord::Associations::Builder # :nodoc: class HasOne < SingularAssociation #:nodoc: def self.macro :has_one end def self.valid_options(options) valid = super + [:as] valid += [:through, :source, :source_type] if options[:through] valid end def self.valid_dependent_options [:destroy, :delete, :nullify, :restrict_with_error, :restrict_with_exception] end def self.add_destroy_callbacks(model, reflection) super unless reflection.options[:through] end def self.define_validations(model, reflection) super if reflection.options[:required] model.validates_presence_of reflection.name, message: :required end end end end