Skip to content

Commit 05ff45c

Browse files
authored
Merge pull request #163 from bastelfreak/openssl
openssl: Pin to 3.x
2 parents 7408bf8 + 43a54d5 commit 05ff45c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ gemspec
2323
# Need to update the openssl gem on MacOS to avoid SSL errors. Doesn't hurt to have the newest
2424
# for all platforms.
2525
# https://www.rubyonmac.dev/certificate-verify-failed-unable-to-get-certificate-crl-openssl-ssl-sslerror
26-
gem 'openssl' unless `uname -o`.chomp == 'Cygwin'
26+
# openssl 4 raises some errors that need to be investigated
27+
gem 'openssl', '~> 3' unless `uname -o`.chomp == 'Cygwin'
2728

2829
# Optional paint gem for rainbow outputter
2930
gem "paint", "~> 2.2"

0 commit comments

Comments
 (0)