> > C:/ruby/lib/ruby/gems/1.8/gems/rails-2.3.5/lib/initializer.rb:271:in > `require_frameworks': RubyGem version error: rack(1.0.0 not ~> 1.0.1) > (RuntimeError) > ... > I've tried $ gem install rack to update the version (to 1.1.0):
I would try installing the version of rack it's asking for instead: gem install rack -v="=1.0.1" FYI: Looks like you had 1.0.0 installed already the first complaint was that 1.0.0 wasn't equal to or greater than version 1.0.1 Then you installed 1.1.0 however the dependency is ~> (notice the tilde) which means anything from 1.0.1 to 1.0.x (i.e. 1.1.0 is too high a version number). Kind Regards Luke -- 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 rubyonrails-t...@googlegroups.com. To unsubscribe from this group, send email to rubyonrails-talk+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.