Displaying 1 result from an estimated 1 matches for "ical_data".
Did you mean:
  cal_data
  
2006 Jun 28
2
webcal url
...it''s done in Basecamp for example.
I know how to create the file using icalendar ruby library and iCal  
can open it, but if I send this file using an url like webcal:// 
localhost:3000/ical/1151495837
iCal says that data are not valid.
Any ideas?
Thanks.
PS here is my rb code
   def ical_data
     cal = Icalendar::Calendar.new
     event = cal.event  # This automatically adds the event to the  
calendar
     event.user_id = "joe-bob@somewhere.net"
     event.timestamp = DateTime.now
     event.summary = "Meeting with the man."
     # We can output the calendars as s...