Hobo 0.5.2 released
Posted by
Tom | April 22, 2007 8 Responses comments

OK 0.5.2 is now available, both in the svn trunk and as a gem

The important breaking change is that the customisation hooks in your hobo_model_controllers no longer work. e.g. if you have

def create_response
  redirect_to "..."
end

That will no longer work. The equivalent is now:

def create
  hobo_create :html_response => proc { 
    redirect_to "..."
  }
end

If you have done a lot of stuff with those hooks, you might want to wait until tomorrow before grabbing 0.5.2. I’m hoping to put a decent chunk of time into catching up with the documentation tomorrow.

Enjoy!

Reader Comments Add your comment »

This is my first upgrade, are the steps listed somewhere?

Also… I just found those darn hooks 2 hours ago and now they are gone! :D

So Great!
I’m using 0.5.1 now, but how to upgrade to 0.5.2

htmlrepsonse –> htmlresponse

Thanks for spotting that typo Dr Nic. Simplest way to upgrade is to remove the plugins/hobo folder and check out the latest one from svn. You should also run the hobo_rapid generator again if you’re using Rapid, but be careful to say “no” to overwriting any files you have changed (e.g. application.dryml).

Congratulations and thanks, Tom.

Correction (to my previous comment): application.dryml isn’t touched by that generator anyway.

Hi Tom. Is there any way of getting in touch besides the forum and the blog? I didn’t find an emailaddress. I got banned from the forum for posting “spam” but the forum didn’t tell me what exactly was wrong. Sorry for the misuse of your blog. I would highly appreciate you removing the ban, please. Thank you!

You can contact me via email: mail at niko minus dittmann dot de


Write a Comment

Comments are formatted using markdown. To include code, either quote it in `backticks` or indent a code-block by 4 spaces.