Wednesday, November 12
Updating a merb application to 1 point oh!
Having a number of merb applications pre 0.9, here are a number of things to consider while updating your app:
- merb-gen core . (to generate the config files, plz have a backup)
- update your routes files to have the correct syntax
- form’s now require the following (note the closings end =)
<%= form_for @thing, :action => resource(:things) do %>
<% end =%>
That’s about it. Good Luck ;)
