2015-09-08 10 views
5

Sto provando ad aggiornare la nostra app da Rails 3.2.22 a Rails 4.2.4 con Ruby 2.2.3.Errore durante l'aggiornamento da Rails 3.2.22 a Rails 4.2.4

Ecco che cosa ho fatto finora:

  1. Modificato Gemfile per specificare rails, "~> 4.2.4"
  2. bundle
  3. bundle update rails

La trascrizione integrale è al di sotto.

ActiveRecord non è specificato nel nostro file Gem, quindi non capisco cosa ha bloccato o dove ripararlo?

Craigs-MacBook-Pro~/Work/mbc(master|✔) % git checkout -b rails-424 
Switched to a new branch 'rails-424' 
Craigs-MacBook-Pro~/Work/mbc(rails-424|✔) % vim Gemfile 
Craigs-MacBook-Pro~/Work/mbc(rails-424|✚1) % bundle 
Fetching gem metadata from https://rubygems.org/........ 
Fetching version metadata from https://rubygems.org/... 
Fetching dependency metadata from https://rubygems.org/.. 
You have requested: 
    rails ~> 4.2.4 

The bundle currently has rails locked at 3.2.22. 
Try running `bundle update rails` 
Craigs-MacBook-Pro~/Work/mbc(rails-424|✚1) % bundle update rails 
Fetching gem metadata from https://rubygems.org/........ 
Fetching version metadata from https://rubygems.org/... 
Fetching dependency metadata from https://rubygems.org/.. 
Resolving dependencies............ 
Bundler could not find compatible versions for gem "activerecord": 
    In Gemfile: 
    activerecord (< 4.3, >= 3.1) ruby 

    activerecord (< 5.0, >= 3.0) ruby 

    vestal_versions (>= 0) ruby depends on 
     activerecord (~> 3.0) ruby 

    activerecord (> 3.0.0) ruby 

    rails (~> 4.2.4) ruby depends on 
     activerecord (= 4.2.4) ruby 
Craigs-MacBook-Pro~/Work/mbc(rails-424|✚1) % 

risposta

1

vestal_versions gemma ha dipendenza ActiveRecord 3.0.

È necessario unspecify versione di vestal_versions gemma nel vostro Gemfile, o specificare di 2.0.0 e poi:

bundle update rails vestal_versions 
+0

Ah, quindi "dipende" è stata la frase chiave lì. –

+0

Funziona ??? – asiniy

+0

Sì, mi ha portato alla prossima serie di errori, ancora. Non posso accettare una risposta per qualche altro minuto. –

Problemi correlati