11175
(-- --)
1
Despite the claim that Rails now work under 1.9, I fail:
testapp\ $ script/console
script/console:2:in `require': no such file to load --
script/../config/boot (LoadError)
from script/console:2:in `<main>'
Does that mean that Rails still do not work under 1.9 or I am doing
anything extremely stupid?
Mukund
(Mukund)
2
Did you update your gems after moving to Rails 1.9?
Mukund
(Mukund)
3
That should read Ruby 1.9. 
Con
(Con)
4
Well, I originally had 1.9.2 preview. Everything works under 1.9.1
though.
Ruby 1.9.1 is production release whereas 1.9.2 is a release candidate. Next, you’ll need to install
all your gems for 1.9.1 by doing:
sudo gem install
-Conrad