summaryrefslogtreecommitdiff
path: root/ext/digest/sha1
diff options
context:
space:
mode:
authorAkinori MUSHA <knu@idaemons.org>2021-09-27 16:31:55 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-10-12 20:53:16 +0900
commitb245b67d9e325824f3869d839a16d06c6a1e8392 (patch)
tree547cc3f299d0edaca28a6036892ee0bcf71e919b /ext/digest/sha1
parent5e1d2c5c9770118713857499c28cd55a2c483631 (diff)
[ruby/digest] Place common parts in lib and engine specific parts under ext/**/lib
https://github.com/ruby/digest/commit/8d7496c3be
Diffstat (limited to 'ext/digest/sha1')
-rw-r--r--ext/digest/sha1/lib/sha1.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/ext/digest/sha1/lib/sha1.rb b/ext/digest/sha1/lib/sha1.rb
deleted file mode 100644
index 864997b1f6..0000000000
--- a/ext/digest/sha1/lib/sha1.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# frozen_string_literal: false
-
-require 'digest'
-
-if RUBY_ENGINE == 'jruby'
- JRuby::Util.load_ext("org.jruby.ext.digest.SHA1")
-else
- require 'digest/sha1.so'
-end