class Rails::Initializable::Collection

def +(other)

def +(other)
  Collection.new(to_a + other.to_a)
end

def tsort_each_child(initializer, &block)

def tsort_each_child(initializer, &block)
  select { |i| i.before == initializer.name || i.name == initializer.after }.each(&block)
end