10000 gems: rename sha3 in keccak to indicate hash used by q9f · Pull Request #3 · q9f/keccak.rb · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

gems: rename sha3 in keccak to indicate hash used #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@
*.bundle
Makefile
test/test_vectors.rb
*.gem
*.log
*.so
6 changes: 3 additions & 3 deletions digest-sha3.gemspec → digest-keccak.gemspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
require File.expand_path('lib/digest/sha3/version')

Gem::Specification.new do |s|
s.name = "digest-sha3"
s.name = "digest-keccak"
s.version = Digest::SHA3::Version::STRING
s.summary = "The SHA-3 (Keccak) hash"
s.summary = "The SHA-3 (Keccak) hash used by Ethereum"
s.email = "ruby@q9f.cc"
s.homepage = "https://github.com/q9f/digest-sha3-ruby"
s.description = "The SHA-3 (Keccak) hash."
Expand All @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
"README.md",
"LICENSE",
"Makefile",
"digest-sha3-patched.gemspec",
"digest-keccak.gemspec",
"ext/**/*.{c,h,rb}",
"lib/**/*"
]
Expand Down
0