This file is indexed.

/usr/lib/ruby/vendor_ruby/gettext_activerecord.rb is in ruby-gettext-activerecord 2.1.0-5.

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
=begin
  gettext_activerecord.rb - GetText for ActiveRecord

  Copyright (C) 2009  Masao Mutoh

  You may redistribute it and/or modify it under the same
  license terms as Ruby or LGPL.

=end

require 'gettext'
require 'active_record'
require 'gettext_activerecord/migration'
require 'gettext_activerecord/schema_definitions'
require 'gettext_activerecord/validations'
require 'gettext_activerecord/base'
require 'gettext_activerecord/i18n'
require 'gettext_activerecord/version'

class Class
  def to_s_with_gettext
    to_s
  end
end