We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d26f6cd commit bd44befCopy full SHA for bd44bef
Gemfile
@@ -44,4 +44,15 @@ group :development do
44
gem "ruby-lsp", require: false
45
gem "simplecov-cobertura"
46
gem "yard"
47
+
48
+ # Resolves https://github.com/ruby/openssl/issues/949 which we encounter when downloading gocaves on Arm macOS on CI
49
+ # This has been fixed in openssl versions 3.1.2, 3.2.2, 3.3.1.
50
+ # The latest dot-patch version of Ruby 3.3 and 3.4 now comes with a new enough openssl version by default.
51
+ if RUBY_PLATFORM.include?("darwin")
52
+ if RUBY_VERSION.start_with?('3.2')
53
+ gem "openssl", "~> 3.2.2"
54
+ elsif RUBY_VERSION.start_with?('3.1')
55
+ gem "openssl", "~> 3.1.2"
56
+ end
57
58
end
0 commit comments