This file is indexed.

/usr/share/doc/libneedle-ruby1.8/TODO is in libneedle-ruby1.8 1.3.0-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
Allow services and namespaces to be unregistered
Make loading cheaper by separating load dependencies

==============================================================================
FEATURE IDEAS FOR VERSION 2.0
(the following features must wait until 2.0+ due to incompatible API changes)
==============================================================================

Instead of having the blocks take two parameters (c and p), accept a single parameter (context) that encapsulates both c and p:

  registry.register( :foo, :model => :multiton ) do |ctx,name|
    Printer.new( ctx[:log, ctx.point], name )
  end