我正在尝试通过此命令将某些内容推送到Heroku
git push heroku master
它给了我这个错误:
Your Ruby version is 2.6.4, but your Gemfile specified 2.6.3
Failed to install gems via Bundler.
Detected a mismatch between your Ruby version installed and
Ruby version specified in Gemfile or Gemfile.lock.
You can correct this by running:
$ bundle update --ruby
$ git add Gemfile.lock
$ git commit -m "update ruby version"
我将我的Gemfile从2.6.3更改为2.6.4,当然通过bundle install命令更新了gemfile,但是失败了。我也尝试运行他们给我的所有命令,但是什么都没改变,我仍然有错误。当我检查时,Gemfile仍然是2.6.4,但是错误仍然告诉我your Gemfile specified 2.6.3
。
您还能给我一些想法吗?非常感谢。