This file is indexed.

/usr/share/doc/ruby-highline/examples/password.rb is in ruby-highline 1.6.20-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
#!/usr/bin/env ruby

require "rubygems"
require "highline/import"

pass = ask("Enter your password:  ") { |q| q.echo = false }
puts "Your password is #{pass}!"