I don't know it this will help, but my Gemfile looks quite different. First, the sources line is like this:
source 'http://gemcutter.org' probably both notations are valid though. The problematic part is probably your Authlogic line. Mine looks like this: gem 'authlogic', :git => 'http://github.com/binarylogic/authlogic.git', '2.1.3' As you can see, I include a complete url to a concrete git file instead of just referencing the repository like you do. I hope that helps. On Thu, Oct 28, 2010 at 6:55 AM, jhubert <[email protected]> wrote: > For some reason I can't deploy my Rails 3 app. My Gemfile looks like > this: > > source :rubygems > > gem 'rails', '3.0.1' > > gem 'sqlite3-ruby', :require => 'sqlite3' > > gem 'authlogic', :git => 'git://github.com/odorcicd/ > authlogic.git', :branch => 'rails3' > gem 'acts_as_commentable' > gem 'activemerchant' > > gem 'jquery-rails' > > and the error message looks like this: > > -----> Heroku receiving push > -----> Rails app detected > > -----> Installing gem source from http://rubygems.org > ERROR: Could not find a valid gem 'source' (> 0) in any > repository > ! Heroku push rejected, failed to install gem > > > Any ideas what might cause this? I am running on the bamboo-ree stack > using Rails 3.0.1 > > -- > 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]<heroku%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/heroku?hl=en. > > -- 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.
