siblings()
Returns all siblings of the current node.
subchild1.siblings # => [subchild2]
# File activerecord/lib/active_record/acts/tree.rb, line 84 def siblings self_and_siblings - [self] end