Hmm, I wrote my replies assuming it was Rails 1.2.6. If your app's Gemfile 
has that info, it pretty much is Rails 3.0.3. In that case, try installing 
rvm, and then...

rvm install 1.8.7
rvm install 1.8.6

Now you can experiment with both versions of ruby. To use a specific one,

rvm use 1.8.7
(to check...)
ruby -v

Now, you can create an isolated gemset, which is what it sounds like. To do 
that:

rvm use 1.8.7
rvm gemset create your_app_name
(and use this gemset as....)
rvm gemset use your_app_name
(to check installed gems...)
gem list

Now you have an isolated environment with which to experiment. Check rvm for 
docs and help.

Check your gemfile again and do:
gem install rails 3.0.3 (if that's what it is)
bundle install (installs the gems in the gemfile for you)
rails s

Hope this works out!

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/rubyonrails-talk/-/OUJoUmpKaDdRS2NK.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to