-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1880 from ksss/digest-raap
Retry Refine Digest
- Loading branch information
Showing
10 changed files
with
123 additions
and
869 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
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Specify the class/module and method names to be executed by RaaP. | ||
# By prefixing with `!`, you can skip testing a method. | ||
|
||
puts 'Set[Integer]' | ||
puts 'Enumerable[Integer]#to_set' | ||
|
||
%w[ | ||
MD5 | ||
SHA1 | ||
RMD160 | ||
SHA256 | ||
SHA384 | ||
SHA512 | ||
].each do |klass| | ||
%w[ | ||
base64digest | ||
bubblebabble | ||
digest | ||
hexdigest | ||
].each do |singleton_method| | ||
puts "Digest::#{klass}.#{singleton_method}" | ||
end | ||
|
||
%w[ | ||
<< | ||
== | ||
block_length | ||
digest_length | ||
reset | ||
update | ||
base64digest | ||
base64digest! | ||
block_length | ||
bubblebabble | ||
digest | ||
digest! | ||
digest_length | ||
hexdigest | ||
hexdigest! | ||
inspect | ||
length | ||
new | ||
reset | ||
size | ||
to_s | ||
update | ||
finish | ||
initialize_copy | ||
].each do |instance_method| | ||
puts "Digest::#{klass}##{instance_method}" | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.