This file is indexed.

/usr/lib/ruby/1.8/ramaze/helper/bench.rb is in libramaze-ruby1.8 2010.06.18-2.

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
require 'benchmark'

module Ramaze
  module Helper

    # Little helper to give you a hand when benching parts of actions
    module Bench

      # Will first run an empty loop to determine the overhead it imposes, then
      # goes on to yield your block +iterations+ times.
      #
      # The last yielded return value will be returned upon completion of the
      # benchmark and the result of the benchmark itself will be sent to
      # Log.info
      #
      # Example:
      #
      #   class MainController < Ramaze::Controller
      #     def index
      #       @users = bench{ User.all }
      #       @tags = bench{ Article.tags }
      #     end
      #   end
      #
      # This will show something like following in your log:
      # [..] INFO   Bench ./start.rb:3:in `index': 0.121163845062256
      # [..] INFO   Bench ./start.rb:4:in `index': 2.234987235098341
      #
      # So now we know that the Article.tags call takes the most time and
      # should be improved.
      def bench(iterations = 1)
        result = nil
        from = caller[0]
        delta = Benchmark.realtime{ iterations.times{ nil }}
        taken = Benchmark.realtime{ iterations.times{ result = yield }}
        Log.info "Bench #{from}: #{taken - delta}"
        return result
      end
    end
  end
end