Reputation: 93
Can any body tell me please how to run ruby 1.9.2 and rails 2.3.2 its requirement please... I installed ruby1.9.2 and my client insisted me to work with rails 2.3.2 so i installed rails server using ruby gem with -v option but server is not starting with ruby script/server command it is saying
C:\Documents and Settings\Tele\Desktop\rubygems-1.8.24\testapp>ruby script/serve
r
C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require':
cannot load such file -- script/../config/boot (LoadError)
from C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:i
n `require'
from script/server:2:in `<main>'
Upvotes: 0
Views: 529
Reputation: 93
finally i just did it by using instant rails and gems 1.3.2 and then upgrading my rails version to 2.3.2 any way i compromised my ruby version to 1.8.6
Upvotes: 0
Reputation: 96454
Use RVM (Ruby Version Manager) and you can seemlessly manage your ruby and rails versions.
Here's the info: https://rvm.io//
I know hundreds of Ruby programmers and everyone uses it. It's basically a standard at this point.
Upvotes: 1