Guest User

Untitled

a guest
Apr 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. def ul_tag(collection,li_options = {},ul_options={})
  2.  
  3. list_items = collection.map{|item|
  4. result = yield(item)
  5. content_tag(:li,result,li_options)
  6. }.join
  7.  
  8. content_tag(:ul,list_items,ul_options)
  9.  
  10. end
Add Comment
Please, Sign In to add comment