Hi, the basic and, I guess, more rhetorical question is why RoR installation/maintenance became so F%#$ing complicated?
Some background of the problem: Platform: Windows XP Ruby version: 1.8.6 A few dozens gems installed with gem version 1.2.0 Current Rails version: 2.1
I just wanted to update to rails 2.3.5 thinking that I have a modest desire, but apparently not. My struggle:
ran 'gem update rails --include-dependencies' (got message that this option is not supported any more (why not?), but update went on for a while)
got error that 'actionpack' had dependency on 'rack' gem (v 1.0.0 required).
ok, ran 'gem install rack' - rack 1.1.0 got installed
re-run 'gem install rails', but got the same problem. Thought that it might not like rack 1.1.0... ok, found 1.0.0 version, downloaded it, uninstalled v. 1.1.0, installed v. 1.0.0 instead
re-run gem install rails again, now rails got installed
ran 'rails app-name' to create my app, got a few consecutive errors that this or that gem was missing. Installed them as I went
got to the point where 'fcgi' gem was missing, couldn't find compiled version, read that it might be better to update rubygem version from 1.2 (buggy) to 1.3.5
- Ok, started to update rubygem. Got to the point where I can't complete 1.3.5 version installation because gemcutter gem is missing.
- trying to install gemcutter and it complaints that it requires rubygems 1.3.5!
- ... and by the way, 'rails my-app' still produces error that fcgi gem is missing
Isn't it NUTS?!
I hope that my experience is not unique and maybe someone could help me out here. Thanks in advance!