Possible Duplicate:
how to iterating days
I have a code for looping days.this to make leaves. I want column signin and signout on attendance will filling automatically start at startdate and end at enddate.
**exp I input :**
startdate: 2012-11-08 01:30:00
enddate: 2012-11-10 01:30:00
**i want output like this:**
2012-11-08 01:30:00
2012-11-09 01:30:00
2012-11-010 01:30:00
for i in 0..((@leafe.enddate - @leafe.startdate).to_i)
@attendance = Attendance.new
@attendance.signin = '2012-11-08 01:30:00' #value must change automatically
@attendance.signout = '2012-11-08 10:30:00'#value must change automatically
@attendance.user_id = @leafe.user_id
@attendance.save
end
for your answer i say thanks