This file is indexed.

/usr/lib/ruby/vendor_ruby/restclient/net_http_ext.rb is in ruby-rest-client 1.6.7-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module Net
  class HTTP    
    
  # Adding the patch method if it doesn't exist (rest-client issue: https://github.com/archiloque/rest-client/issues/79)
  if !defined?(Net::HTTP::Patch)
    # Code taken from this commit: https://github.com/ruby/ruby/commit/ab70e53ac3b5102d4ecbe8f38d4f76afad29d37d#lib/net/http.rb
    class Protocol
      # Sends a PATCH request to the +path+ and gets a response,
      # as an HTTPResponse object.
      def patch(path, data, initheader = nil, dest = nil, &block) # :yield: +body_segment+
        send_entity(path, data, initheader, dest, Patch, &block)
      end
      
      # Executes a request which uses a representation
      # and returns its body.
      def send_entity(path, data, initheader, dest, type, &block)
        res = nil
        request(type.new(path, initheader), data) {|r|
          r.read_body dest, &block
          res = r
        }
        unless @newimpl
          res.value
          return res, res.body
        end
        res
      end
    end
    
    class Patch < HTTPRequest
      METHOD = 'PATCH'
      REQUEST_HAS_BODY = true
      RESPONSE_HAS_BODY = true
    end
  end

    #
    # Replace the request method in Net::HTTP to sniff the body type
    # and set the stream if appropriate
    #
    # Taken from:	
    # http://www.missiondata.com/blog/ruby/29/streaming-data-to-s3-with-ruby/

    alias __request__ request

    def request(req, body=nil, &block)
      if body != nil && body.respond_to?(:read)
        req.body_stream = body
        return __request__(req, nil, &block)
      else
        return __request__(req, body, &block)
      end
    end
  end
end