On Oct 29, 2011, at 10:20 AM, Donald R. Ziesig wrote: > Hi All! > > Using RC3 and preparing for Heroku deploy using 'thin' webserver per Heroku > docs. (This config works on a Heroku-hosted site using RC2.) > > Added: > > gem 'thin' > > to Gemfile, then > > > bundle install > > and > > > thin start > > gives: > > .../lib/bundler/runtime.rb:31:in `block in setup': You have already activated > rack 1.3.5, but your Gemfile requires rack 1.2.4. Consider using bundle exec. > (Gem::LoadError) > > added: > > gem 'rack', '1.3.5' > > to Gemfile, followed by > > > bundle update rack > > gives: > > Bundler could not find compatible versions for gem "rack": > In Gemfile: > hobo (= 1.3.0.RC3) depends on > rack (~> 1.2.1) > > rack (1.3.5) > > Conclusion, RC3 not quite ready for prime time :-( .
We actually inherit this dependency from actionpack 3.0.10, so I don't think there's anything to be done about it. Either use 'bundle exec' to start thin or make sure that you've got the right version of Rack installed... --Matt Jones -- You received this message because you are subscribed to the Google Groups "Hobo Users" 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/hobousers?hl=en.
