i''ve run update and update system... now, when i run script/server I get this output: -------------snip----------------- /opt/local/lib/ruby/site_ruby/1.8/rubygems.rb:777:in `report_activate_error'': RubyGem version error: rack(1.0.0 not ~> 1.0.1) (Gem::LoadError) from /opt/local/lib/ruby/site_ruby/1.8/rubygems.rb:211:in `activate'' from /opt/local/lib/ruby/site_ruby/1.8/rubygems.rb:1056:in `gem'' from /opt/local/lib/ruby/gems/1.8/gems/actionpack-2.3.5/lib/ action_controller.rb:34 from /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb: 31:in `gem_original_require'' from /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb: 31:in `require'' from /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/ active_support/dependencies.rb:156:in `require'' from /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/ active_support/dependencies.rb:521:in `new_constants_in'' from /opt/local/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/ active_support/dependencies.rb:156:in `require'' from /opt/local/lib/ruby/gems/1.8/gems/rails-2.3.5/lib/commands/ server.rb:2 from /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb: 31:in `gem_original_require'' from /opt/local/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb: 31:in `require'' -------------snip----------------- any thoughts? TIA, J -- 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.
On Tue, Apr 20, 2010 at 3:04 AM, JSF <jfreeman-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> `report_activate_error'': RubyGem version error: rack(1.0.0 not ~> > 1.0.1) (Gem::LoadError)That''s the source of the error, you need to update your rack gem. Try: gem install rack -v 1.0.1 -- 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.