This file is indexed.

/usr/share/doc/ruby-innate/examples/app/retro_games.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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
require 'innate'
require 'yaml/store'

STORE = YAML::Store.new('games.yaml')

def STORE.[](key) transaction{|s| super } end
def STORE.[]=(key, value) transaction{|s| super } end
def STORE.each(&block)
  YAML.load_file('games.yaml').sort_by{|k,v| -v }.each(&block)
end

STORE['Pacman'] = 1

class Games
  Innate.node('/')

  def index
    TEMPLATE
  end

  def create
    STORE[request[:name]] ||= 0 if request.post?

    redirect_referrer
  end

  def vote(name)
    STORE[name] += 1

    redirect_referrer
  end

  TEMPLATE = <<-'T'.strip
<?xml version='1.0' encoding='utf-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
  <head>
    <title>Top Retro Games</title>
  </head>
  <body>
    <h1>Vote on your favorite Retro Game</h1>
    <form action="#{ r(:create) }" method="post">
      <input type="text" name="name" />
      <input type="submit" value="Add" />
    </form>
    <ol>
      <?r STORE.each do |name, votes| ?>
        <li>
          #{ a("Vote", r(:vote, u(name))) }
          #{ h "%5d => %s" % [votes, name] }
        </li>
      <?r end ?>
    </ol>
  </body>
</html>
  T
end

Innate.start