This file is indexed.

/usr/share/rubygems-integration/all/specifications/warden-1.2.3.gemspec is in ruby-warden 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 = "warden"
  s.version = "1.2.3"

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Daniel Neighman"]
  s.date = "2013-07-14"
  s.email = "has.sox@gmail.com"
  s.extra_rdoc_files = ["LICENSE", "README.textile"]
  s.files = ["Gemfile", "History.rdoc", "lib/warden/config.rb", "lib/warden/errors.rb", "lib/warden/hooks.rb", "lib/warden/manager.rb", "lib/warden/mixins/common.rb", "lib/warden/proxy.rb", "lib/warden/session_serializer.rb", "lib/warden/strategies/base.rb", "lib/warden/strategies.rb", "lib/warden/test/helpers.rb", "lib/warden/test/warden_helpers.rb", "lib/warden/version.rb", "lib/warden.rb", "LICENSE", "Rakefile", "README.textile", "spec/helpers/request_helper.rb", "spec/helpers/strategies/failz.rb", "spec/helpers/strategies/invalid.rb", "spec/helpers/strategies/pass.rb", "spec/helpers/strategies/pass_with_message.rb", "spec/helpers/strategies/password.rb", "spec/helpers/strategies/single.rb", "spec/spec_helper.rb", "spec/warden/authenticated_data_store_spec.rb", "spec/warden/config_spec.rb", "spec/warden/errors_spec.rb", "spec/warden/hooks_spec.rb", "spec/warden/manager_spec.rb", "spec/warden/proxy_spec.rb", "spec/warden/scoped_session_serializer.rb", "spec/warden/session_serializer_spec.rb", "spec/warden/strategies/base_spec.rb", "spec/warden/strategies_spec.rb", "spec/warden/test/helpers_spec.rb", "spec/warden/test/test_mode_spec.rb", "warden.gemspec"]
  s.homepage = "http://github.com/hassox/warden"
  s.licenses = ["MIT"]
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubyforge_project = "warden"
  s.rubygems_version = "2.0.14"
  s.summary = "Rack middleware that provides authentication for rack applications"

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

    if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<rack>, [">= 1.0"])
    else
      s.add_dependency(%q<rack>, [">= 1.0"])
    end
  else
    s.add_dependency(%q<rack>, [">= 1.0"])
  end
end