On Wed, Jul 8, 2009 at 5:49 AM, Sarah Allen<[email protected]> wrote: > Hi, > > I have an app that uses a few gems that I am trying to deploy on > heroku. I created a .gem file which installs some gems with no > problem, but fails to install one: > > my .gem file has: > xoopit-cloudquery --source gems.github.com > > I get this failure: > -----> Installing gem xoopit-cloudquery from http://gems.github.com > ERROR: Error installing xoopit-cloudquery: > xoopit-cloudquery requires rack (>= 1.0, runtime) > Building native extensions. This could take a while... > > > error: hooks/pre-receive exited with error code 1 > To [email protected]:sharp-dusk-60.git > ! [remote rejected] master -> master (pre-receive hook declined) > > The gem comes from here: http://github.com/nbio/cloudquery/tree/master > > Do I need to do something special to install rack? I thought that > came with Rails 2.3...
Hi Sarah, Try: xoopit-cloudquery --source gems.github.com --source gems.rubyforge.org The issue here is that rubygems is attempting to obtain all dependent gems from gems.github.com. Adding gems.rubyforge.org as an additional source should allow all dependencies to be resolved correctly. We've considered adding gems.rubyforge.org as a default source but that can create issues when you're installing gems from a private repository and the same gems exist in both repositories and rubyforge has a newer version. Thanks, Ryan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" 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/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
