digest-keccak/digest-sha3.gemspec

23 lines
616 B
Ruby
Raw Normal View History

2012-10-04 12:46:08 -04:00
require File.expand_path('lib/digest/sha3/version')
Gem::Specification.new do |s|
s.name = "digest-sha3"
s.version = Digest::SHA3::Version::STRING
s.summary = "The SHA-3 (Keccak) hash"
s.email = "software-signing@phusion.nl"
2012-10-05 06:30:09 -04:00
s.homepage = "https://github.com/phusion/digest-sha3-ruby"
2012-10-04 12:46:08 -04:00
s.description = "The SHA-3 (Keccak) hash."
2012-10-06 07:03:33 -04:00
s.authors = ["Hongli Lai (Phusion)", "Keccak authors"]
2012-10-04 12:46:08 -04:00
s.extensions << "ext/digest/extconf.rb"
s.require_ruby_version = "~> 2.2"
2012-10-04 12:46:08 -04:00
s.files = Dir[
2012-10-05 06:30:09 -04:00
"README.md",
"LICENSE",
2012-10-05 14:40:31 -04:00
"Makefile",
2012-10-04 12:46:08 -04:00
"digest-sha3.gemspec",
"ext/**/*.{c,h,rb}",
"lib/**/*"
]
end