-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gems: fix gem name to avoid conflict (#7)
- Loading branch information
Showing
2 changed files
with
12 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
require File.expand_path('lib/digest/sha3/version') | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "digest-keccak" | ||
s.name = "keccak" | ||
s.version = Digest::SHA3::Version::STRING | ||
s.summary = "The SHA-3 (Keccak) hash used by Ethereum." | ||
s.summary = "The Keccak (SHA-3) hash used by Ethereum." | ||
s.email = "[email protected]" | ||
s.homepage = "https://github.com/q9f/digest-keccak-ruby" | ||
s.description = "The SHA-3 (Keccak) hash use by Ethereum. This does not implement the final FIPS202 standard, today known as SHA3 but rather an early version, commonly referred to as Keccak." | ||
s.homepage = "https://github.com/q9f/keccak.rb" | ||
s.description = "The Keccak (SHA-3) hash use by Ethereum. This does not implement the final FIPS202 standard, today known as SHA3 but rather an early version, commonly referred to as Keccak." | ||
s.authors = ["Afri Schoedon", "Chris Metcalfe", "Hongli Lai (Phusion)", "Keccak authors"] | ||
s.extensions << "ext/digest/extconf.rb" | ||
s.required_ruby_version = ">= 2.2" | ||
s.license = "Apache-2.0" | ||
|
||
s.files = Dir[ | ||
"README.md", | ||
"COPYRIGHT", | ||
"LICENSE", | ||
"Makefile", | ||
"digest-keccak.gemspec", | ||
"keccak.gemspec", | ||
"ext/**/*.{c,h,rb}", | ||
"lib/**/*" | ||
] | ||
|