Guest User

Untitled

a guest
May 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. module Merb
  2. module ProductsHelper
  3. def product_rows
  4. @products.size > 5 [@products[0..4], @products[5..9].delete_if{|v|v.nil?}] : [@products]
  5. end
  6. end
  7. end # Merb
Add Comment
Please, Sign In to add comment