Hi, yesterday I attempted to test my Rails app with Ruby 1.9. I installed all necessary gems, saw that some of them aren't compatible with 1.9 and switched back to 1.8. Now my app still thinks it has to go with 1.9 and shows the following error message when I try to test it.
---------8<--------------------------------------- $ rake test (in /home/helge/Development/kunsthof) Missing these required gems: mysql rmagick You're running: ruby 1.9.1.243 at /usr/bin/ruby1.9.1 rubygems 1.3.6 at /home/helge/.gem/ruby/1.9.1, /usr/lib/ruby1.9.1/gems/1.9.1 Run `rake gems:install` to install the missing gems. ---------8<--------------------------------------- Apparently Rails always uses the most recent Ruby it can find. Can I tell it to use 1.8 somehow? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. 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.

