This file is indexed.

/usr/lib/ruby/vendor_ruby/bundler/templates/newgem/lib/newgem.rb.tt is in ruby-bundler 1.13.6-2.

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
require "<%=config[:namespaced_path]%>/version"
<%- if config[:ext] -%>
require "<%=config[:namespaced_path]%>/<%=config[:underscored_name]%>"
<%- end -%>

<%- config[:constant_array].each_with_index do |c,i| -%>
<%= '  '*i %>module <%= c %>
<%- end -%>
<%= '  '*config[:constant_array].size %># Your code goes here...
<%- (config[:constant_array].size-1).downto(0) do |i| -%>
<%= '  '*i %>end
<%- end -%>