digest-keccak/digest-sha3.gemspec

22 lines
580 B
Ruby
Raw Normal View History

2012-10-04 16:46:08 +00: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 10:30:09 +00:00
s.homepage = "https://github.com/phusion/digest-sha3-ruby"
2012-10-04 16:46:08 +00:00
s.description = "The SHA-3 (Keccak) hash."
2012-10-06 11:03:33 +00:00
s.authors = ["Hongli Lai (Phusion)", "Keccak authors"]
2012-10-04 16:46:08 +00:00
s.extensions << "ext/digest/extconf.rb"
s.files = Dir[
2012-10-05 10:30:09 +00:00
"README.md",
"LICENSE",
2012-10-05 18:40:31 +00:00
"Makefile",
2012-10-04 16:46:08 +00:00
"digest-sha3.gemspec",
"ext/**/*.{c,h,rb}",
"lib/**/*"
]
end