2009/12/1 ct9a <[email protected]>: > hi guys, > > I just updated to rails 2.3.5 on os X snow leopard. > > When I try to run "rake routes", I get the following error indicating > that the searchlogic gem is not installed. > > That cannot be right as it "rake routes" ran fine when I was still > using rails 2.3.4 and that I even ran "gem install searchlogic" (with > sudo) as per searchlogic's documentation. > > Any ideas? > > Also, does anyone know how to revert the rails version back to 2.3.4 ? > That could be a quick fix until people fix the any potential issue > with rails 2.3.5 . >
Did you remember to run rake rails:update in your project directory? To revert to 2.3.4 simply put RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION at the head of environment.rb (you should see a similar line there already, probably commented out). Colin -- 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.

