/usr/share/rubygems-integration/all/specifications/ruby-hmac-0.4.0.gemspec is in ruby-hmac 0.4.0-5.
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 | # -*- encoding: utf-8 -*-
# stub: ruby-hmac 0.4.0 ruby lib
Gem::Specification.new do |s|
s.name = "ruby-hmac"
s.version = "0.4.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Daiki Ueno", "Geoffrey Grosenbach"]
s.date = "2016-06-26"
s.description = "This module provides common interface to HMAC functionality. HMAC is a kind of \"Message Authentication Code\" (MAC) algorithm whose standard is documented in RFC2104. Namely, a MAC provides a way to check the integrity of information transmitted over or stored in an unreliable medium, based on a secret key.\n\nOriginally written by Daiki Ueno. Converted to a RubyGem by Geoffrey Grosenbach"
s.email = ["", "boss@topfunky.com"]
s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
s.files = ["History.txt", "Manifest.txt", "README.txt", "Rakefile", "lib/hmac-md5.rb", "lib/hmac-rmd160.rb", "lib/hmac-sha1.rb", "lib/hmac-sha2.rb", "lib/hmac.rb", "lib/ruby_hmac.rb", "test/test_hmac.rb"]
s.homepage = "http://ruby-hmac.rubyforge.org"
s.rdoc_options = ["--main", "README.txt"]
s.rubyforge_project = "ruby-hmac"
s.rubygems_version = "2.5.1"
s.summary = "This module provides common interface to HMAC functionality"
s.test_files = ["test/test_hmac.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<rubyforge>, [">= 2.0.3"])
s.add_development_dependency(%q<gemcutter>, [">= 0.2.1"])
s.add_development_dependency(%q<hoe>, [">= 2.5.0"])
else
s.add_dependency(%q<rubyforge>, [">= 2.0.3"])
s.add_dependency(%q<gemcutter>, [">= 0.2.1"])
s.add_dependency(%q<hoe>, [">= 2.5.0"])
end
else
s.add_dependency(%q<rubyforge>, [">= 2.0.3"])
s.add_dependency(%q<gemcutter>, [">= 0.2.1"])
s.add_dependency(%q<hoe>, [">= 2.5.0"])
end
end
|