Module: ActiveRecordExtended::RelationPatch::ArelBuildPatch

Defined in:
lib/active_record_extended/active_record/relation_patch.rb

Instance Method Summary collapse

Instance Method Details

#build_arel(*aliases) ⇒ Object



21
22
23
24
25
26
# File 'lib/active_record_extended/active_record/relation_patch.rb', line 21

def build_arel(*aliases)
  super.tap do |arel|
    build_unions(arel) if union_values?
    build_with(arel)   if with_values?
  end
end