Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created May 30, 2012 22:48
Show Gist options
  • Save workmad3/2839404 to your computer and use it in GitHub Desktop.
Save workmad3/2839404 to your computer and use it in GitHub Desktop.
weekdays = %w(Sun Mon Tue Wed Thu Fri Sat)
capture do
content_tag :ul do
weekdays.each do |day|
concat do
content_tag(:li, day)
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment