This file is indexed.

/usr/lib/ruby/vendor_ruby/ramaze/controller/default.rb is in ruby-ramaze 2012.12.08-3.

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
module Ramaze
  Log.debug "Default controller invoked"

  ##
  # The default controller that is loaded if no other controllers have been
  # defined.
  #
  # @author Michael Fellinger
  # @since  30-03-2009
  #
  class DefaultController < Ramaze::Controller
    map '/'

    ##
    # Shows an ASCII lobster using Rack::Lobster::LobsterString.
    #
    # @author Michael Fellinger
    # @since  06-04-2009
    #
    def lobster
      require 'rack/lobster'
      respond Rack::Lobster::LobsterString
    end
  end # DefaultController
end # Ramaze