Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code (simplified to get to the point):

    - @assumptions[1].each do |ca|
      - if count % 3 == 1
        %tr
          %th
            = ca.value
      - else
        %th
          = ca.value
      - count = count + 1

I am not sure how to make this work in haml to have every 4 items create a new tag.

This is how it is outputting:

  <tr>
    <tr> 
      <th> 
        700.0
      </th> 
    </tr> 
    <th> 
      1235.0
    </th> 
    <th> 
      0.8
    </th> 
    <th> 
      650.0
    </th> 
  <tr> 
    <th> 
      1050.0
    </th> 
  </tr> 
  <th> 
    0.2
  </th> 
</tr>

This is how I would like it to output:

<tr>
  <th>
    700.0
  </th>
  <th>
    1235.0
  </th>
  <th>
    0.8
  </th>
</tr>
<tr>
  <th>
    650.0
  </th>
  <th>
    1050.0
  </th>
</tr>

I hope this makes sense.

share|improve this question

1 Answer

up vote 14 down vote accepted

You can use Enumerable's each_slice method to group these into chunks of 3:

- @assumptions[1].each_slice(3) do |group|
  %tr
    - group.each do |ca|
      %th= ca.value
share|improve this answer
1  
+1. Beat me by 1 minute! – Craig Stuntz Jun 14 '11 at 16:58
amazing, thank you!!! – Toby Joiner Jun 14 '11 at 17:10
1  
Answers like this reaffirm the reason I love Stack Overflow. I just trimmed 20 lines of code (plus a partial) down to 8 (and removed the partial) thanks to this gem of an answer :-) – Aboutimage Jun 14 '11 at 18:32
This is the beauty of functional programming – asattar Apr 19 '12 at 5:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.