This file is indexed.

/usr/lib/ruby/vendor_ruby/shoulda/matchers/active_record/helpers.rb is in ruby-shoulda-matchers 1.0.0~beta2-1build1.

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
module Shoulda # :nodoc:
  module Matchers
    module ActiveRecord # :nodoc:
      module Helpers
        def pretty_error_messages(obj) # :nodoc:
          obj.errors.map do |a, m|
            msg = "#{a} #{m}"
            msg << " (#{obj.send(a).inspect})" unless a.to_sym == :base
          end
        end

        # Helper method that determines the default error message used by Active
        # Record.  Works for both existing Rails 2.1 and Rails 2.2 with the newly
        # introduced I18n module used for localization.
        #
        #   default_error_message(:blank)
        #   default_error_message(:too_short, :count => 5)
        #   default_error_message(:too_long, :count => 60)
        def default_error_message(key, values = {})
          if Object.const_defined?(:I18n) # Rails >= 2.2           
            I18n.translate(:"activerecord.errors.messages.#{key}", {:default => :"errors.messages.#{key}"}.merge(values))
          else # Rails <= 2.1.x
            ::ActiveRecord::Errors.default_error_messages[key] % values[:count]
          end
        end
      end
    end
  end
end