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]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
