Hello,
I tried deploying my Ruby on Rails project based on the guidelines provided under the Go Production Ready section of the Render web page below:
But during the deployment of the web service I encountered a Ruby version error related to one of my gem dependencies as shown in the logs below:
The ruby version I am using in my local development environment is Ruby 3.1.3 and the application runs fine on it.
However, I suspect the version being used on the virtual machine(Render production environment) is the one causing the issue and is currently version 2.6.8(see log message), which is lower than the minimum 2.7.1 version.
My render app is hosted at https://mysite-f7t4.onrender.com/
Is there a way this can be upgraded to the same version as my development environment(Ruby 3.1.3) so that I can install the gems and see if the project runs successfully after?