We need to ensure heroku-18 compatibility since it is the latest heroku version.
Heroku 18 does not support ruby 2.3, which is what heroku was defaulting to run for reasons?
We should be the ones dictating which ruby version is being run. This application was built against 2.4.1, so logically 2.4.9 is the version we should initially choose to unblock deploying this app/spinning up a new one.
Failure
! An error occurred while installing ruby-2.3.4
!
! This version of Ruby is not available on Heroku-18. The minimum supported version
! of Ruby on the Heroku-18 stack can found at:
!
! https://devcenter.heroku.com/articles/ruby-support#supported-runtimes
!
! Push rejected, failed to compile Ruby app.
! Push failed
Purpose
We need to ensure
heroku-18
compatibility since it is the latest heroku version. Heroku 18 does not support ruby 2.3, which is what heroku was defaulting to run for reasons? We should be the ones dictating which ruby version is being run. This application was built against 2.4.1, so logically 2.4.9 is the version we should initially choose to unblock deploying this app/spinning up a new one.Failure