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 . thanks -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
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. ------------------------------------------------ bash-3.2# gem install -v=2.3.5 rails Successfully installed rails-2.3.5 1 gem installed Installing ri documentation for rails-2.3.5... Installing RDoc documentation for rails-2.3.5... bash-3.2# bash-3.2# rake routes (in /Users/anexiole/projects/rails/RealAutoParts) Missing these required gems: searchlogic You''re running: ruby 1.8.7.72 at /System/Library/Frameworks/Ruby.framework/Versions/ 1.8/usr/bin/ruby rubygems 1.3.4 at /Users/anexiole/.gem/ruby/1.8, /Library/Ruby/Gems/ 1.8, /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ ruby/gems/1.8 Run `rake gems:install` to install the missing gems. ------------------------------------------------ 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 . thanks -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
reverting is easy. just uninstall your current rails-gem. if didn''t uninstall 2.3.4 it should still be there and your done. if you uninstalled it, just install it with -v=2.3.4. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
2009/12/1 ct9a <anexiole-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>:> 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
hello, Colin, thanks as your suggestion to simply put RAILS_GEM_VERSION = ''2.3.4'' is working, yes, i have executed "rake rails:update" in my rails project dir with sudo prior to posting the message. thank you -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
2009/12/2 ct9a <anexiole-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>:> hello, Colin, > thanks as your suggestion to simply put RAILS_GEM_VERSION = ''2.3.4'' > is working, > yes, i have executed "rake rails:update" in my rails project dir with > sudo prior to posting the message. > > thank youYou should not need to use sudo for rake rails:update, it is only affecting files in your rails app. I do not know whether using sudo may give problems later due to file ownership. 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.