views:

1156

answers:

2

I was working on a rails project on my laptop and pushing code to github. Now I cloned the project on my desktop.

when running:

rake db:migrate

I get the following error:

rake aborted!
RubyGem version error: rack(1.0.0 not ~> 1.0.1)

(See full trace by running task with --trace)

Before this error I had to run the following commands:

sudo gem install -v=2.3.5 rails
sudo gem update rack
+5  A: 
sudo gem install -v 1.0.1 rack
Alex Reisner
sudo gem install -v 1.0.0 rack
nanda
That sucks! I mean, the fact that I needed this and have no idea who or what has this strange dependency. Great answer, +1
Yar
A: 

Thanks, you saved me... ca marche coe sur des roulettes, thanks Alex

Tchibos