【发布时间】:2015-01-01 20:16:36
【问题描述】:
我正在尝试将 Rails 应用程序推送到 Heroku,但我不断收到此错误。
user$ git push heroku master
Initializing repository, done.
Counting objects: 158, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (144/144), done.
Writing objects: 100% (158/158), 671.52 KiB | 160.00 KiB/s, done.
Total 158 (delta 32), reused 0 (delta 0)
-----> Ruby app detected
-----> Compiling Ruby/Rails
!
! An error occurred while installing Ruby ruby-2.1.1
! For supported Ruby versions see https://devcenter.heroku.com/articles/ruby-support#supported-runtimes
! Note: Only the most recent version of Ruby 2.1 is supported on Cedar-14
! Command: 'set -o pipefail; curl --fail --retry 3 --retry-delay 1 --connect-timeout 3 --max-time 30 https://s3-external-1.amazonaws.com/heroku-buildpack-ruby/cedar-14/ruby-2.1.1.tgz -s -o - | tar zxf - ' failed unexpectedly:
!
! gzip: stdin: unexpected end of file
! tar: Child returned status 1
! tar: Error is not recoverable: exiting now
!
! Push rejected, failed to compile Ruby app
To git@heroku.com:user.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to 'git@heroku.com:user.git'
我研究了一些可能的解决方案,在 S.O 上徘徊,但似乎都没有。我尝试破坏 heroku 应用程序然后重新创建它,并尝试使用不同的 ruby 版本,但这似乎也不起作用。
【问题讨论】:
-
Note: Only the most recent version of Ruby 2.1 is supported on Cedar-14。最新版本似乎是 2.1.4。你试过这个版本吗? -
是的,但我安装它时遇到错误,我现在想弄清楚。
标签: ruby-on-rails ruby git heroku ruby-on-rails-4.2