This file is indexed.

/usr/lib/ruby/vendor_ruby/innate/default_middleware.rb is in ruby-innate 2013.02.21-1.

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
Innate.middleware(:dev) do
  use Rack::Lint
  use Rack::Head
  use Rack::ContentLength
  use Rack::CommonLogger
  use Rack::ShowExceptions
  use Rack::ShowStatus
  use Rack::ConditionalGet
  use Rack::Reloader, 2

  run Innate.core
end

Innate.middleware(:live) do
  use Rack::Head
  use Rack::ContentLength
  use Rack::CommonLogger
  use Rack::ShowStatus
  use Rack::ConditionalGet

  run Innate.core
end