I'm not sure about this, but you could try setting up a config.ru file to manually start up your Rails app. My suspicion is that it's failing to find config.ru, auto-detecting a Rails app, and not finding all the gems.
Just some thoughts.. maybe you've already done all that. :) Jimmy On Mon, Oct 18, 2010 at 12:33 PM, Chris Hanks <[email protected] > wrote: > There's a lot of parts of Rails that my app has no use for > (activerecord, actionmailer, activeresource, and all their associated > dependencies like arel, mail, and so on), and I'm trying to take > advantage of the new modularity in Rails 3. In my Gemfile I've > replaced the rails dependency with: > > gem 'railties', '3.0.0' > gem 'actionpack', '3.0.0' > gem 'activesupport', '3.0.0' > > And my app works totally fine this way, except that Heroku won't > accept it, saying: > > -----> Rails app detected > ! Heroku Bamboo does not include any Rails gems by default. > ! You'll need to declare it in either .gems or Gemfile. > ! See http://docs.heroku.com/gems for details on specifying gems. > ! Heroku push rejected, no Rails gem specified. > > Is there a workaround for this? Something I can change to not trigger > the Rails app detection? I understand the need for the warning, but > ideally, I think my invocation of 'railties' would signify to Heroku > that I know what I'm doing. > > Thanks! > > -- > 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. > > -- +1-919-627-7546 -- 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.
