This file is indexed.

/usr/share/doc/rant/configure.rdoc is in rant 0.5.8-8.

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
== The Configure plugin

The Configure plugin lets you define a list of checks and generates
tasks to run them. I'll show an Rantfile using the Configure plugin
and explain it afterwards.

    conf = plugin :Configure do |conf|
	conf.task           # define a task named :configure
	conf.check "a" do |c|
	    c.default "value_a"
	    c.guess { "value_a_guess" }
	    c.react { |val|
		p val
	    }
	end
	conf.check "b" do |c|
	    c.default "value_b"
	end
	conf.check "c" do |c|
	end
	conf.check "d" do |c|
	    c.react {
	    }
	end
	conf.check "e" do |c|
	    c.guess { false }
	end
    end

    file conf["a"] do |t|
	sys.touch t.name
    end

== See also

Rant Overview::
    README[link:files/README.html]
Writing an Rantfile::
    doc/rantfile.rdoc[link:files/doc/rantfile_rdoc.html]