Google Calendar Data API

This gem provides access to the calendar API to GData.

Usage: g = GData.new(uri) # you can find your cal URI by following these directions: code.google.com/apis/calendar/developers_guide_protocol.html#find_feed_url

g.calendar # returns a calendar object g.calendar.events.first.title # returns teh title of teh first event in the calendar

g.new_event(:title => “Blah”) #makes a new event titles blah (note, you need all the stuff in GData#new_xml to get it to work)