-
-
Notifications
You must be signed in to change notification settings - Fork 256
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
updated brew truffleruby openssl dependency @1.1 -> @3 #491
updated brew truffleruby openssl dependency @1.1 -> @3 #491
Conversation
@beelleau since I don't have a macOS system to test this on, can you confirm that current TruffleRuby compiles and works against |
Verification that I've modified the
Installing & checking:
[started a new session]
Making a HTTPS request: #!/usr/bin/env ruby
require 'net/https'
puts "Ruby engine: #{RUBY_ENGINE}"
puts "Ruby version: #{RUBY_VERSION}"
puts
puts OpenSSL::OPENSSL_VERSION
puts
uri = URI('https://www.google.com')
https = Net::HTTP.new(uri.host, uri.port)
https.use_ssl = true
request = Net::HTTP::Get.new(uri)
response = https.request(request)
if response.code == '200'
puts 'HTTPS connection successful!'
puts response.body[0...100]
else
puts "Error connecting: #{response.code} #{response.message}"
end running it:
|
same thing as above but with truffleruby-graalvm Installing & checking:
[edited .ruby-version file and started a new session]
Making a HTTPS request (same code as before):
|
Fix for Issue #490.
Upgrades
dependencies.txt
openssl version to 3.