This file is indexed.

/usr/share/doc/ruby-locale-rails/README.rdoc is in ruby-locale-rails 2.0.5-7.

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
= Ruby-Locale for Ruby on Rails

This library provides some Rails localized functions.

This is useful with Rails i18n backends which doesn't have
auto-detection and some other features includes this library.

== Features for Ruby on Rails
* Auto-Detect the locales from the WWW browser
* Action/Fragment caching
* Separated Localized View template file
* Localized Routes
* I18n.t fallback to localized message candidates.

== Website
* http://www.yotabanana.com/hiki/ruby-locale-rails.html
* http://locale.rubyforge.org/

== Requirements
* Ruby-1.8.7 or later <http://www.ruby-lang.org/ja/>
* JRuby-1.1.4 or later <http://jruby.codehaus.org/>
* Ruby-Locale-0.9.0 or later <http://locale.rubyforge.org/>

== Install
* gem:
  ($ su)
   # gem install locale_rails

== Usage
==== config/environment.rb
  Rails::Initializer.run do |config|
    :
    :
    config.gem 'locale'
    config.gem 'locale_rails'
  end

==== config/initializer/locale.rb

 # Tell the I18n library where to find your translations
 I18n.supported_locales = ["ja", "en"]
 I18n.default_locale = "ja" 

== Support matrix
* locale_rails-2.0.5 - rails-2.3.2,2.3.3,2.3.4
* locale_rails-2.0.4 - rails-2.3.2
* locale_rails-2.0.3 - rails-2.3.2
* locale_rails-2.0.2 - rails-2.3.2
* locale_rails-2.0.1 - rails-2.3.2
* locale_rails-2.0.0 - rails-2.3.2
* locale_rails-0.1.0 - rails-2.1.x

== License
This program is licenced under the same licence as Ruby(See COPYING) or
LGPL(Lesser General Public License: http://www.gnu.org/licenses/lgpl-3.0.txt).

== Maintainer
Masao Mutoh <mutomasa at gmail.com>