method
each_children
v7.1.3.2 -
Show latest stable
- Class:
ActiveRecord::Associations::JoinDependency::JoinPart
each_children(&block)public
No documentation available.
# File activerecord/lib/active_record/associations/join_dependency/join_part.rb, line 36
def each_children(&block)
children.each do |child|
yield self, child
child.each_children(&block)
end
end