Hi Gabriel, You're getting this error because you don't have the hobo gems installed (I checked your app to verify). When you created your hobo app locally, the generator took care of installing the plugin and putting it in vendor, so that will make it up to Heroku upon import. The hobo gems, however, won't and even if you had those installed in your Heroku app in advance, doing an import will actually overwrite you entire app. That means you need to install the hobo gems (hobo, hobofields, hobosupport) after importing.
Doing this will make your hobo app run, but in my own testing I noticed that there are a couple of issues with hobo itself that prevents it from "just working". For one, hobo doesn't seem to fully support PostgreSQL. I noticed the search feature doesn't currently work because it's double quoting strings, and PostgreSQL doesn't like that*. This is something you could probably tinker with on your own, and relatively easily fix if you're so inclined. In summary, the answer is that while it's probably very possible to get Hobo apps to run with some tinkering, we don't officially support it yet. We do love what the Hobo guys are doing though, so hopefully this will change at some point in the future. Best, /Morten * It wants string literals single-quoted. Double-quotes are interpreted as encapsulating a column name. On Jun 5, 2008, at 10:17 AM, GabrielG1976 wrote: > > Hello everyone Im trying to set up a hobo app I have all the files > uploaded but when i try to view it it gives me a can't load Mongrel I > was wondering if there is any way of fixing this > > > thanks Gabriel > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
