This file is indexed.

/usr/share/rubygems-integration/2.0/specifications/text-table-1.2.3.gemspec is in ruby-text-table 1.2.3-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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
  s.name = "text-table"
  s.version = "1.2.3"

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Aaron Tinio"]
  s.date = "2013-04-15"
  s.description = "Allows you to easily create and format plain text tables, useful when working with the terminal or when you want to quickly print formatted tables to a dot-matrix printer."
  s.email = "aptinio@gmail.com"
  s.extra_rdoc_files = ["LICENSE", "README.rdoc"]
  s.files = [".document", ".gitignore", "CHANGELOG.rdoc", "Gemfile", "LICENSE", "README.rdoc", "lib/text-table.rb", "lib/text-table/cell.rb", "lib/text-table/enumerable.rb", "lib/text-table/row.rb", "lib/text-table/symbol.rb", "lib/text-table/table.rb", "lib/text-table/version.rb", "spec/cell_spec.rb", "spec/enumerable_spec.rb", "spec/integration/alignment_spec.rb", "spec/integration/boundaries_spec.rb", "spec/integration/column_spans_spec.rb", "spec/integration/parts_spec.rb", "spec/integration/performance_spec.rb", "spec/integration_helper.rb", "spec/spec_helper.rb", "text-table.gemspec"]
  s.homepage = "https://github.com/aptinio/text-table"
  s.licenses = ["MIT"]
  s.require_paths = ["lib"]
  s.rubygems_version = "1.8.23"
  s.summary = "A feature-rich, easy-to-use plain text table formatter."
  s.test_files = ["spec/cell_spec.rb", "spec/enumerable_spec.rb", "spec/integration/alignment_spec.rb", "spec/integration/boundaries_spec.rb", "spec/integration/column_spans_spec.rb", "spec/integration/parts_spec.rb", "spec/integration/performance_spec.rb", "spec/integration_helper.rb", "spec/spec_helper.rb"]

  if s.respond_to? :specification_version then
    s.specification_version = 4

    if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
      s.add_development_dependency(%q<rspec>, ["~> 2"])
    else
      s.add_dependency(%q<rspec>, ["~> 2"])
    end
  else
    s.add_dependency(%q<rspec>, ["~> 2"])
  end
end