[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-08 Thread MartOn
As a followup here, I just got information from Heroku that submodules does not yet work on heroku.com - At the moment, submodules won't work. You'll need to remove the submodules and add the files to your repository directly. - But they have now fixed the bug causing this: Status: 500 Internal

[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-05 Thread MartOn
Nope, that did not help. I am abit worried that it may be something with the database. Heroku uses this YAML_DB plugin and I used that to migrate the database. I did a rake db:load The app is public, if you go to: http://triptracker.heroku.com/trips you can see a list of trips (sorry it is in

[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-05 Thread MartOn
Hmm. Now I dumped the application to a bundle on heroku and then downloaded it locally, then did a rake db:load and fired up the app and it works. So it seems the only place it does not work, is on heroku. Strange /MartOn On Feb 5, 10:03 am, MartOn frode.mel...@gmail.com wrote: Nope, that

[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-05 Thread Tom Locke
That recipe is for herokugarden - I've never tested it with the new heroku.com service so it may not work at all Tom On 5 Feb 2009, at 14:05, MartOn wrote: There is something wrong with my hobo plugin. Thats what causing the error... But the receipe for adding hobo to heroku is not

[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-05 Thread MartOn
ok, so how can I now remove the submodule of hobo gracefully on server and readd it as normal plugin? It seems all these issues I have had, is that I ended up with 2 different versions of hobo locally and remote. /MartOn On Feb 5, 3:06 pm, Tom Locke t...@tomlocke.com wrote: That recipe is

[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-05 Thread Tom Locke
ok, so how can I now remove the submodule of hobo gracefully on server and readd it as normal plugin? I haven't even looked at the new heroku.com - I have no idea Tom --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-05 Thread MartOn
ok, you should look at it :-) It is same as herokugarden, just without the code-editor stuff. It is ment for remote git administration. Problem now is that there are no were to add gems and stuff, so I am confused :-) I tried git submodule remove vendor/plugins/hobo but that did not work :-)

[Hobo Users] Re: NoMethodError undefined method field_names_where_true

2009-02-05 Thread MartOn
I got it working now. Here is what I did: - removed hobo as submodule: rm -rf vendor/plugins/hobo - removed hobo folder from git: gir rm vendor/plugins/hobo - commited - pushed changes to heroku - Added hobo as regular plugin: script/plugin install git - added it to git: git add . -