/usr/share/rubygems-integration/2.0/specifications/samuel-0.3.3.gemspec is in ruby-samuel 0.3.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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | # -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "samuel"
s.version = "0.3.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Chris Kampmeier"]
s.date = "2011-11-10"
s.description = "An automatic logger for HTTP requests in Ruby, supporting the Net::HTTP and HTTPClient client libraries."
s.email = "chris@kampers.net"
s.extra_rdoc_files = ["LICENSE", "README.rdoc"]
s.files = [".document", ".gitignore", "Gemfile", "LICENSE", "README.rdoc", "Rakefile", "lib/samuel.rb", "lib/samuel/diary.rb", "lib/samuel/driver_patches/http_client.rb", "lib/samuel/driver_patches/net_http.rb", "lib/samuel/loader.rb", "lib/samuel/log_entries/base.rb", "lib/samuel/log_entries/http_client.rb", "lib/samuel/log_entries/net_http.rb", "samuel.gemspec", "test/http_client_test.rb", "test/loader_test.rb", "test/net_http_test.rb", "test/samuel_test.rb", "test/test_helper.rb", "test/thread_test.rb"]
s.homepage = "http://github.com/chrisk/samuel"
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = "samuel"
s.rubygems_version = "1.8.23"
s.summary = "An automatic logger for HTTP requests in Ruby"
s.test_files = ["test/http_client_test.rb", "test/loader_test.rb", "test/net_http_test.rb", "test/samuel_test.rb", "test/test_helper.rb", "test/thread_test.rb"]
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_development_dependency(%q<shoulda>, ["= 2.11.3"])
s.add_development_dependency(%q<mocha>, ["= 0.10.0"])
s.add_development_dependency(%q<httpclient>, ["= 2.2.3"])
s.add_development_dependency(%q<fakeweb>, ["~> 1.3"])
s.add_development_dependency(%q<rcov>, ["= 0.9.11"])
s.add_development_dependency(%q<yard>, ["= 0.7.3"])
s.add_development_dependency(%q<rake>, ["= 0.9.2.2"])
else
s.add_dependency(%q<shoulda>, ["= 2.11.3"])
s.add_dependency(%q<mocha>, ["= 0.10.0"])
s.add_dependency(%q<httpclient>, ["= 2.2.3"])
s.add_dependency(%q<fakeweb>, ["~> 1.3"])
s.add_dependency(%q<rcov>, ["= 0.9.11"])
s.add_dependency(%q<yard>, ["= 0.7.3"])
s.add_dependency(%q<rake>, ["= 0.9.2.2"])
end
else
s.add_dependency(%q<shoulda>, ["= 2.11.3"])
s.add_dependency(%q<mocha>, ["= 0.10.0"])
s.add_dependency(%q<httpclient>, ["= 2.2.3"])
s.add_dependency(%q<fakeweb>, ["~> 1.3"])
s.add_dependency(%q<rcov>, ["= 0.9.11"])
s.add_dependency(%q<yard>, ["= 0.7.3"])
s.add_dependency(%q<rake>, ["= 0.9.2.2"])
end
end
|