This file is indexed.

/usr/lib/ruby/vendor_ruby/ethon/curls/form_options.rb is in ruby-ethon 0.7.0-1.

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
module Ethon
  module Curls

    # This module contains the available options for forms.
    module FormOptions

      # Form options, used by FormAdd for temporary storage, refer
      # https://github.com/bagder/curl/blob/master/lib/formdata.h#L51 for details
      def form_options
        [
          :none,
          :copyname,
          :ptrname,
          :namelength,
          :copycontents,
          :ptrcontents,
          :contentslength,
          :filecontent,
          :array,
          :obsolete,
          :file,
          :buffer,
          :bufferptr,
          :bufferlength,
          :contenttype,
          :contentheader,
          :filename,
          :end,
          :obsolete2,
          :stream,
          :last
        ]
      end
    end
  end
end