This file is indexed.

/usr/lib/ruby/vendor_ruby/launchy.rb is in ruby-launchy-shim 2.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
14
15
module Launchy
  def self.open(uri, options = {})
    if xdg_open_available
      system('xdg-open', uri)
    else
      puts "W: can't open #{uri} without xdg-open; install the `xdg-utils` package!"
    end
  end

  private

  def self.xdg_open_available
    system('which xdg-open >/dev/null')
  end
end