Re: Pushing a Rails app without the rails gem.

2010-10-31 Thread Chris Hanks
For anyone curious about this, I eventually solved it by starting off my Gemfile with: source :rubygems # Shut up, Heroku. # gem 'rails' gem 'railties', '3.0.0' gem 'actionpack', '3.0.0' gem 'activesupport', '3.0.0' And so on... On Oct 18, 11:54 am, Chris Hanks christopher.m.ha...@gmail.com

Re: Pushing a Rails app without the rails gem.

2010-10-18 Thread Jimmy Thrasher
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,

Re: Pushing a Rails app without the rails gem.

2010-10-18 Thread Chris Hanks
It's a Rails 3 app, so it has an automatically generated config.ru. Thanks for the suggestion, though. On Oct 18, 9:38 am, Jimmy Thrasher ji...@jimmythrasher.com wrote: 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