# File lib/puppet/transportable.rb, line 148
148:         def push(*args)
149:             args.each { |arg|
150:                 case arg
151:                 when Puppet::TransBucket, Puppet::TransObject
152:                     # nada
153:                 else
154:                     raise Puppet::DevError,
155:                         "TransBuckets cannot handle objects of type %s" %
156:                             arg.class
157:                 end
158:             }
159:             @children += args
160:         end