mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 03:24:00 +02:00
7 lines
118 B
Ruby
7 lines
118 B
Ruby
# frozen_string_literal: true
|
|
|
|
begin
|
|
require "openssl"
|
|
rescue LoadError => e
|
|
raise unless e.path == 'openssl'
|
|
end
|