# File lib/vcr/http_stubbing_adapters/fakeweb.rb, line 30
      def stub_requests(http_interactions, match_attributes)
        validate_match_attributes(match_attributes)

        grouped_responses(http_interactions, match_attributes).each do |request_matcher, responses|
          ::FakeWeb.register_uri(
            request_matcher.method || :any,
            request_matcher.uri,
            responses.map{ |r| response_hash(r) }
          )
        end
      end