I\'m trying a helper method that will output a list of items, to be called like so:
foo_list( [\'item_one\', link_to( \'item_two\', \'#\' ) ... ] ) >
foo_list( [\'item_one\', link_to( \'item_two\', \'#\' ) ... ] )
Along with answers above, this worked for me well:
(1..14).to_a.each do |age| concat content_tag :li, "#{link_to age, '#'}".html_safe end