contents()
A list of file names contained in this gem
# File lib/rubygems/package/old.rb, line 35 def contents verify return @contents if @contents open @gem, 'rb' do |io| read_until_dashes io # spec header = file_list io @contents = header.map { |file| file['path'] } end end