Looking for Enumerable help I think...
- From: Robert Malko <robmalko@xxxxxxxxx>
- Date: Sun, 17 Feb 2008 01:02:57 -0500
I have a piece of code below. I have activities hooked up to a Calendar
but I'm running into a problem I can't wrap my head around. What I'm
trying to achieve is the output: { period: '<%= February 17, 2008 %>',
teaser: ['Activity 1', 'Activity 2'], label: ['']}, if there is more
than on activity for a given day.
I was thinking that I would have to dump the information into an array
and iterator within the teaser: line, but I can't quite figure it.
Any help would be appreciated.
Thanks!
<% @projects.each do |a| %>
<% a.activities.each do |b| %>
{ period: '<%= b.win_at.strftime("%B, %d, %Y") %>', teaser: ['<%=
b.name %>'], label: ['']},
<% end %>
<% end %>
--
Posted via http://www.ruby-forum.com/.
.
- Prev by Date: Re: [ANN] JRuby 1.1RC2 Released
- Next by Date: Re: Beginner help - txt dungeon
- Previous by thread: Re: TRAC - Trac, Project Leads, Python, and Mr. Noah Kantrow
- Next by thread: smtp - from field shows up blank in client
- Index(es):
Relevant Pages
|