Hi folks creating a new Hobo app with 1.4 pre6 worked smoothly for me, but when I tried deploying to Heroku, it didn't work "out of the box". After some exploration I've got it working with the Cedar stack (which will become their default in a couple of weeks anyway), after making the following tweaks to the Gemfile.
Posting here in case anyone else wants to set off down the same road... ----------------------------------- Gemfile ----------------------------------- index aaa4963..1adcf20 100644 @@ -5,7 +5,9 @@ gem 'rails', '3.1.5' # Bundle edge Rails instead: # gem 'rails', :git => 'git://github.com/rails/rails.git' -gem 'sqlite3' +gem "sqlite3", :group => :development + +gem 'pg', :group => :production -- You received this message because you are subscribed to the Google Groups "Hobo Users" 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/hobousers?hl=en.
