This file is indexed.

/usr/share/rubygems-integration/all/gems/faker-1.6.6/lib/faker/color.rb is in ruby-faker 1.6.6-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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module Faker
  class Color < Base
    class << self
      def hex_color
        @hex_color = "#%06x" % (rand * 0xffffff)
      end

      def color_name
        fetch('color.name')
      end

      def single_rgb_color
        @single_rgb_color = (0..255).to_a.sample
        @single_rgb_color
      end

      def rgb_color
        @rgb_colors = []
        3.times do
          @rgb_colors.push single_rgb_color
        end
        @rgb_colors
      end

      def single_hsl_color
        @single_hsla_color = Faker::Base::rand_in_range(0.0, 360.00).round(2)
        @single_hsla_color
      end

      def alpha_channel
        @alpha_channel = rand
        @alpha_channel
      end

      def hsl_color
        @hsl_colors = []
        3.times do
          @hsl_colors.push single_hsl_color
        end
        @hsl_colors
      end

      def hsla_color
        @hsla_colors = []
        3.times do
          @hsla_colors.push single_hsl_color
        end
        @hsla_colors.push alpha_channel
        @hsla_colors
      end
    end
  end
end