gcal4ruby 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +2 -0
- data/lib/gcal4ruby/event.rb +1 -1
- metadata +1 -1
data/CHANGELOG
CHANGED
data/lib/gcal4ruby/event.rb
CHANGED
@@ -381,7 +381,7 @@ module GCal4Ruby
|
|
381
381
|
query_string += "&ctz=#{timezone.gsub(" ", "_")}" if timezone
|
382
382
|
query_string += "&singleevents#{single_events}" if single_events
|
383
383
|
if query_string
|
384
|
-
events = calendar.service.send_get("http://www.google.com/calendar/feeds/
|
384
|
+
events = calendar.service.send_get("http://www.google.com/calendar/feeds/#{calendar.id}/private/full?"+query_string)
|
385
385
|
ret = []
|
386
386
|
REXML::Document.new(events.read_body).root.elements.each("entry"){}.map do |entry|
|
387
387
|
entry.attributes["xmlns:gCal"] = "http://schemas.google.com/gCal/2005"
|