簡體   English   中英

Heroku Ruby on Rails應用程序推送失敗

[英]Heroku Ruby on Rails app push failed

最近,我將Rails應用程序從Rails 3升級到Rails 5,從Bootstrap 2升級到Bootstrap 4,解決了所有這些之后,我在將其上傳到Heroku時遇到了一些麻煩。 我的意思是,在本地,它與rails server完美配合。 但是,當我嘗試上傳時,出現錯誤,並且在互聯網上找不到任何類似的情況。 這是我在git push heroku master之后得到的:

Counting objects: 122, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (119/119), done.
Writing objects: 100% (122/122), 31.05 KiB | 1.48 MiB/s, done.
Total 122 (delta 77), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Ruby app detected
remote: -----> Compiling Ruby/Rails
remote:        Your app was upgraded to bundler 1.15.2.
remote:        Previously you had a successful deploy with bundler 1.5.2.
remote:
remote:        If you see problems related to the bundler version please refer to:
remote:        https://devcenter.heroku.com/articles/bundler-version
remote: -----> Using Ruby version: ruby-1.9.2
remote: ###### WARNING:
remote:        Removing `Gemfile.lock` because it was generated on Windows.
remote:        Bundler will do a full resolve so native gems are handled properly.
remote:        This may result in unexpected gem versions being used in your app.
remote:        In rare occasions Bundler may not be able to resolve your dependencies at all.
remote:        https://devcenter.heroku.com/articles/bundler-windows-gemfile
remote:
remote: -----> Installing dependencies using bundler 1.15.2
remote:        Purging Cache. Changing stack from cedar to cedar-14
remote:        Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4
remote:        Fetching gem metadata from https://rubygems.org/........
remote:        Fetching version metadata from https://rubygems.org/..
remote:        Fetching dependency metadata from https://rubygems.org/.
remote:        Resolving dependencies...
remote:        The latest bundler is 1.16.0, but you are currently running 1.15.2.
remote:        To update, run `gem install bundler`
remote:        Bundler could not find compatible versions for gem "rubygemsils (= 5.1.4) was resolved to 5.1.4, which depends on
remote:        rubygems       Bundler Output: Fetching gem metadata from https://rubygems.org/........
remote:        Fetching version metadata from https://rubygems.org/..
remote:        Fetching dependency metadata from https://rubygems.org/.
remote:        Resolving dependencies...
remote:        The latest bundler is 1.16.0, but you are currently running 1.15.2.
remote:        To update, run `gem install bundler`
remote:        Bundler could not find compatible versions for gem "rubygemsresolved to 5.1.4, which depends on
remote:        rubygems !     Push rejected, failed to compile Ruby app.
remote:
remote:  !     Push failed
remote: Verifying deploy...
remote:
remote: !       Push rejected to keepmefit.
remote:

我知道它抱怨我的捆綁軟件版本,但這應該是警告,而不是真正的錯誤。 我猜問題可能出在現在可能與Heroku或Rails 5不兼容的寶石之一中,但它們在本地服務器上沒有問題。 這是我的Gemfile:

source 'https://rubygems.org'

gem 'rails', '5.1.4'

if RUBY_VERSION =~ /1.9/
  Encoding.default_external = Encoding::UTF_8
  Encoding.default_internal = Encoding::UTF_8
end

group :development, :test do
    gem 'sqlite3'
  gem 'activemodel'
  gem 'json'

    gem 'rspec-rails'
    gem 'guard-rspec'
    gem 'rb-notifu'
end

# Heroku uses PostreSQL
group :production do
    gem 'pg'
end

group :test do 
    gem 'capybara'
    gem 'factory_girl_rails', '4.1.0'
    gem 'launchy'
end

group :development do
    gem 'annotate'
    gem 'better_errors'
    gem 'binding_of_caller'
    gem 'meta_request'
end


# Gems used only for assets and not required
# in production environments by default.
group :assets do
  gem 'sass-rails'
  gem 'coffee-rails'
    gem 'coffee-script-source', '1.8.0'

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'
# To use ActiveModel has_secure_password
#gem 'bcrypt-ruby'
gem 'bcrypt', '~> 3.1.11', platforms: [:ruby, :x64_mingw, :mingw]

# HTML abstraction language (Haml)
gem 'haml'
gem 'haml-rails'

# Twitter Bootstrap
gem 'bootstrap-sass'

require 'rbconfig'
gem 'wdm', '>= 0.1.0' if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i

# HMTL 5 support
gem 'modernizr-rails'

# More icons!
#gem "font-awesome-rails"

# http://rubydoc.info/gems/bootstrap-datepicker-rails/1.0.0.7/frames
gem 'bootstrap-datepicker-rails'
gem 'tzinfo-data'

# Sample data 
gem 'faker', '1.1.2'

# Pagination
gem 'will_paginate', '~> 3.1.0'
gem 'bootstrap-will_paginate'

# Turbolinks https://github.com/rails/turbolinks#turbolinks
# http://railscasts.com/episodes/390-turbolinks
gem 'turbolinks'
gem 'jquery-turbolinks'

# https://github.com/rails/strong_parameters
# gem 'strong_parameters'

# http://railscasts.com/episodes/314-pretty-urls-with-friendlyid?view=asciicast
gem 'friendly_id'

# http://railscasts.com/episodes/324-passing-data-to-javascript?view=asciicast
gem 'gon'

gem 'cloudinary'

作為答案之一,我也嘗試過使用git pull heroku master並返回:

From https://git.heroku.com/keepmefit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> heroku/master
Already up-to-date.

此外, git push -f heroku master和輸出與使用git push heroku master相同,因此錯誤仍然存​​在,並且推送被拒絕。

任何幫助表示贊賞。

看來您的heroku遙控器與您嘗試推送的文件(升級后)沖突。 你有兩個選擇

1-清理/合並您的新更改heroku遙控器,然后再次推送

  • git pull heroku master
  • 修復任何沖突/清理等。
  • git push heroku master

2-強制推動您的新更改

注意:此操作將覆蓋您當前在HEROKU中所做的所有操作。 因此,請確保您不需要任何已在heroku上進行的更改。

  • git push -f heroku master

堆棧(cedar-14或cedar)似乎是一個非常老的堆棧。 將堆棧升級到Heroku-16將解決此問題。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM