I figured it out, I had commented out my gem declarations in environment.rb. I added them back with some success.
However after that the signup POST failed, saying it didn't know a method :password. I figured it was an authlogic problem so I hardcoded in the version I wanted into the .gems file (the version on my localhost worked). Also before that, the app complained about not having authlogic and searchlogic, so I added them to my .gems. Here is my final .gems file: authlogic --version '= 2.1.3' searchlogic icalendar calendar_date_select aws-s3 haml htmlentities hpricot rmagick desert yahoo-weather httparty openrain-action_mailer_tls --source http://gems.github.com Couple application specific things in there, but I think you can see the differences. This is awesome, powerful software, thanks Bruno for writing it. BTW we live in the same town (Minneapolis for me) so maybe I'll see you around at the Ruby events. James On Feb 27, 6:51 am, Bruno Bornsztein <[email protected]> wrote: > What's in your .gems file? > > On Sat, Feb 27, 2010 at 12:27 AM, jostheim <[email protected]>wrote: > > > > > hi- > > > I followed the heroku instructions exactly and am getting the > > following error when trying to load my schema (heroku rake > > db:schema:load): > > > no such file to load -- technoweenie/attachment_fu/backends/s3_backend > > > I tried installing attachment_fu directly to my top level plugins > > directory, and promply got a different file not found. Seems like > > somehow I am not getting the vendor/plugins/community_engine/* pushed > > to heroku. > > > Here is my output following the instructions: > > > DIVWLM-328LYJZ-7:bbq *******$ rm -rf vendor/plugins/ > > community_engine/.git* > > DIVWLM-328LYJZ-7:bbq *******$ git rm --cached vendor/plugins/ > > community_engine > > fatal: not removing 'vendor/plugins/community_engine' recursively > > without -r > > > >>obviously this could be my issue, I am running > > > DIVWLM-328LYJZ-7:bbq *******$ git --version > > git version 1.7.0 > > > >> proceeding using recursion > > DIVWLM-328LYJZ-7:bbq *******$ git rm -r --cached vendor/plugins/ > > community_engine > > > >> clipped output, every file under vendor/plugins/community_engine was > > "removed" > > > git commit -m 'no more ce...' > > > >> clipped output every file was deleted > > > DIVWLM-328LYJZ-7:bbq ********$ git add vendor/plugins/community_engine > > DIVWLM-328LYJZ-7:bbq ********$ git commit -m 'ce back... again' > > > >> clipped output every file was added > > > DIVWLM-328LYJZ-7:bbq ********$ git push heroku master > > Counting objects: 4, done. > > Delta compression using up to 2 threads. > > Compressing objects: 100% (3/3), done. > > Writing objects: 100% (3/3), 390 bytes, done. > > Total 3 (delta 1), reused 0 (delta 0) > > > -----> Heroku receiving push > > -----> Rails app detected > > Compiled slug size is 4.4MB > > -----> Launching......... done > > http://strong-wind-61.heroku.comdeployed to Heroku > > > To [email protected]:strong-wind-61.git > > 62ca0ba..1e07d19 master -> master > > > DIVWLM-328LYJZ-7:bbq *****$ heroku rake db:schema:load > > rake aborted! > > no such file to load -- technoweenie/attachment_fu/backends/s3_backend > > > (See full trace by running task with --trace) > > (in /disk1/home/slugs/139655_1e07d19_adde/mnt) > > > Not sure what I did wrong, I followed the instructions to the T. > > > Help is appreciated! > > > James > > > -- > > You received this message because you are subscribed to the Google Groups > > "CommunityEngine" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<communityengine%2Bunsubscribe@ > > googlegroups.com> > > . > > For more options, visit this group at > >http://groups.google.com/group/communityengine?hl=en. -- You received this message because you are subscribed to the Google Groups "CommunityEngine" 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/communityengine?hl=en.
