|
# https://github.com/rails/rails/issues/55886 |
|
# add openssl as an explicit gem to fix SSL verification issues in GHA. |
|
spec.add_runtime_dependency "openssl" |
The openssl gem is a development dependency. It is not a runtime dependency. This is only needed because of a GitHub Action Runner configuration issue where their macOS images are not up to date with SSL certificates.
Users do not need the openssl gem at all.
Solution: move it to Gemfile
relaton-cli/relaton-cli.gemspec
Lines 27 to 29 in 97e4b4e
The
opensslgem is a development dependency. It is not a runtime dependency. This is only needed because of a GitHub Action Runner configuration issue where their macOS images are not up to date with SSL certificates.Users do not need the openssl gem at all.
Solution: move it to Gemfile