In rails 3.0 with HAML (3.1.4) I have
some template-like partial, like _template.html.haml:
.panel.top = yield :panel_top .content = yieldsome another partial which will be displayed using prev template (all this stuff is rendered using AJAX, but this doesn't matter)
- content_for :panel_top do .title.left = title content text
and this worked like a charm in Rails 3.0
But, after upgrade to 3.2 this fails! Yiels just yields "content text", so I have "content text" twice and no title at all
only changing = yield :panel_top to = content_for :panel_top works for 3.2
I am not sure that this solution is ok, and if it is stable or recommended, I cannot find any notes about changes in yield processing nor in Rails 3.1 release notes, nor in 3.2 ones.
Can you help what is the best way to organize yielding inside partials?