# File lib/vcr/http_stubbing_adapters/multi_object_proxy.rb, line 12 def initialize(*objects) ::Kernel.raise ::ArgumentError.new("You must pass at least one object to proxy to") if objects.empty? ::Kernel.raise ::ArgumentError.new("Cannot proxy to nil") if objects.any? { |o| o.nil? } @proxied_objects = objects end