list_block.rb 186 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 class ListBlock < Block def to_html str = "content_tag(:ul, [" + User.find_all.map{|u| "content_tag( :li, '#{u.name}' )" }.join(',') + "])" return str end end