This file is indexed.

/usr/lib/ruby/vendor_ruby/gettext_activerecord/tools.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
25
26
27
28
29
30
=begin
  tools.rb - Utility functions

  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/tools'
require 'gettext_activerecord'
require 'gettext_activerecord/parser'

module GetText
  extend self

  alias :create_mofiles_org :create_mofiles  #:nodoc:
  alias :update_pofiles_org :update_pofiles  #:nodoc:

  # update_pofiles for ActiveRecord.
  # In this method, GetText::ActiveRecordParser.init is called 
  # with "options".
  #  (e.g.)
  #  GetText.update_po_files("foo", Dir.glob("lib/**/*"), "1.0.0", :untranslate_classes = ["UntranslateClass"]
  def update_pofiles(textdomain, files, app_version, options = {})
    GetText::ActiveRecordParser.init(options)
    GetText.update_pofiles_org(textdomain, files, app_version, options)
  end

end