/usr/share/rubygems-integration/all/specifications/text-1.3.0.gemspec is in ruby-text 1.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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | # -*- encoding: utf-8 -*-
# stub: text 1.3.0 ruby lib
Gem::Specification.new do |s|
  s.name = "text"
  s.version = "1.3.0"
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.require_paths = ["lib"]
  s.authors = ["Paul Battley", "Michael Neumann", "Tim Fletcher"]
  s.date = "2014-06-23"
  s.description = "A collection of text algorithms: Levenshtein, Soundex, Metaphone, Double Metaphone, Porter Stemming"
  s.email = "pbattley@gmail.com"
  s.extra_rdoc_files = ["README.rdoc", "COPYING.txt"]
  s.files = ["COPYING.txt", "README.rdoc", "Rakefile", "lib/text.rb", "lib/text/double_metaphone.rb", "lib/text/levenshtein.rb", "lib/text/metaphone.rb", "lib/text/porter_stemming.rb", "lib/text/soundex.rb", "lib/text/version.rb", "lib/text/white_similarity.rb", "test/data/double_metaphone.csv", "test/data/metaphone.yml", "test/data/metaphone_buggy.yml", "test/data/porter_stemming_input.txt", "test/data/porter_stemming_output.txt", "test/data/soundex.yml", "test/double_metaphone_test.rb", "test/levenshtein_test.rb", "test/metaphone_test.rb", "test/porter_stemming_test.rb", "test/soundex_test.rb", "test/test_helper.rb", "test/text_test.rb", "test/white_similarity_test.rb"]
  s.homepage = "http://github.com/threedaymonk/text"
  s.licenses = ["MIT"]
  s.rubyforge_project = "text"
  s.rubygems_version = "2.2.2"
  s.summary = "A collection of text algorithms"
  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<rake>, ["~> 10.0"])
    else
      s.add_dependency(%q<rake>, ["~> 10.0"])
    end
  else
    s.add_dependency(%q<rake>, ["~> 10.0"])
  end
end
 |