siri_cal 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +155 -0
  3. data/Rakefile +37 -0
  4. data/lib/generators/install.rb +16 -0
  5. data/lib/generators/templates/siri_cal.rb +13 -0
  6. data/lib/generators/templates/siri_says/default.rb +3 -0
  7. data/lib/siri_cal.rb +41 -0
  8. data/lib/siri_cal/methods.rb +49 -0
  9. data/lib/siri_cal/say_proxy.rb +63 -0
  10. data/lib/siri_cal/version.rb +3 -0
  11. data/lib/tasks/siri_cal_tasks.rake +4 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +9 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  15. data/test/dummy/app/controllers/application_controller.rb +3 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/models/movie.rb +2 -0
  18. data/test/dummy/app/models/user.rb +4 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/config.ru +4 -0
  21. data/test/dummy/config/application.rb +45 -0
  22. data/test/dummy/config/boot.rb +10 -0
  23. data/test/dummy/config/database.yml +25 -0
  24. data/test/dummy/config/environment.rb +5 -0
  25. data/test/dummy/config/environments/development.rb +30 -0
  26. data/test/dummy/config/environments/production.rb +60 -0
  27. data/test/dummy/config/environments/test.rb +42 -0
  28. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/test/dummy/config/initializers/inflections.rb +10 -0
  30. data/test/dummy/config/initializers/mime_types.rb +5 -0
  31. data/test/dummy/config/initializers/secret_token.rb +7 -0
  32. data/test/dummy/config/initializers/session_store.rb +8 -0
  33. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  34. data/test/dummy/config/locales/en.yml +5 -0
  35. data/test/dummy/config/routes.rb +58 -0
  36. data/test/dummy/db/development.sqlite3 +0 -0
  37. data/test/dummy/db/migrate/20111105175135_create_users.rb +11 -0
  38. data/test/dummy/db/migrate/20111108194230_create_movies.rb +11 -0
  39. data/test/dummy/db/schema.rb +31 -0
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/lib/siri_says/default.rb +3 -0
  42. data/test/dummy/log/development.log +102 -0
  43. data/test/dummy/log/test.log +4932 -0
  44. data/test/dummy/public/404.html +26 -0
  45. data/test/dummy/public/422.html +26 -0
  46. data/test/dummy/public/500.html +26 -0
  47. data/test/dummy/public/favicon.ico +0 -0
  48. data/test/dummy/script/rails +6 -0
  49. data/test/dummy/test/fixtures/movies.yml +7 -0
  50. data/test/dummy/test/fixtures/users.yml +11 -0
  51. data/test/dummy/test/unit/movie_test.rb +7 -0
  52. data/test/dummy/test/unit/user_test.rb +7 -0
  53. data/test/fixtures/vcr_cassettes/invalid_credentials.yml +36 -0
  54. data/test/fixtures/vcr_cassettes/valid_credentials.yml +38 -0
  55. data/test/fixtures/vcr_cassettes/valid_credentials_with_events.yml +772 -0
  56. data/test/fixtures/vcr_cassettes/valid_credentials_with_events_to_delete.yml +948 -0
  57. data/test/generators/install_test.rb +13 -0
  58. data/test/siri_cal_test.rb +82 -0
  59. data/test/test_helper.rb +23 -0
  60. metadata +216 -0
@@ -0,0 +1,948 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :get
5
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=GJ_WgU2aJ2oOyV90p5CbtA
6
+ body:
7
+ headers:
8
+ content-type:
9
+ - application/atom+xml
10
+ authorization:
11
+ - GoogleLogin auth=DQAAAKgAAAB5VB10pLtN6mxkPzom-IQbps8-Rogrx-OS1FBzcctys-K2OTRZdy68bxbfTgkQJkxCxJwwgn0bG5LgrTcMOkhL4anT4ZqRBhi0OQ44e88dgxM-GA4j_73CLFSiO2ISPc4o60sCI0rXlRb6wDy_0t1sW1ICWG1M41ANtZkKLRi8eB_jJOcaFolc6oOJIg1Tx3Qd9paA6sQwlX7kk3ekAJzfNFmG3NBXAlpGnkGzl4PObw
12
+ response: !ruby/struct:VCR::Response
13
+ status: !ruby/struct:VCR::ResponseStatus
14
+ code: 200
15
+ message: OK
16
+ headers:
17
+ x-content-type-options:
18
+ - nosniff
19
+ x-frame-options:
20
+ - SAMEORIGIN
21
+ expires:
22
+ - Mon, 07 Nov 2011 03:11:55 GMT
23
+ last-modified:
24
+ - Mon, 07 Nov 2011 03:11:55 GMT
25
+ content-type:
26
+ - application/atom+xml; charset=UTF-8
27
+ date:
28
+ - Mon, 07 Nov 2011 03:11:55 GMT
29
+ x-xss-protection:
30
+ - 1; mode=block
31
+ server:
32
+ - GSE
33
+ gdata-version:
34
+ - "1.0"
35
+ set-cookie:
36
+ - S=calendar=nOr2lRJaCAz-T1f9CDdjfw;Expires=Tue, 06-Nov-2012 03:11:55 GMT;Secure
37
+ cache-control:
38
+ - private, max-age=0, must-revalidate, no-transform
39
+ vary:
40
+ - Accept, X-GData-Authorization, GData-Version
41
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-07T03:11:55.946Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-07T03:11:55.919Z</published><updated>2011-11-07T03:11:45.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-07T03:11:55.923Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-07T03:11:55.918Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-07T03:11:55.918Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
42
+ http_version: "1.1"
43
+ - !ruby/struct:VCR::HTTPInteraction
44
+ request: !ruby/struct:VCR::Request
45
+ method: :get
46
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=GJ_WgU2aJ2oOyV90p5CbtA
47
+ body:
48
+ headers:
49
+ content-type:
50
+ - application/atom+xml
51
+ authorization:
52
+ - GoogleLogin auth=DQAAAKgAAAB5VB10pLtN6mxkPzom-IQbps8-Rogrx-OS1FBzcctys-K2OTRZdy68bxbfTgkQJkxCxJwwgn0bG5LgrTcMOkhL4anT4ZqRBhi0OQ44e88dgxM-GA4j_73CLFSiO2ISPc4o60sCI0rXlRb6wDy_0t1sW1ICWG1M41ANtZkKLRi8eB_jJOcaFolc6oOJIg1Tx3Qd9paA6sQwlX7kk3ekAJzfNFmG3NBXAlpGnkGzl4PObw
53
+ response: !ruby/struct:VCR::Response
54
+ status: !ruby/struct:VCR::ResponseStatus
55
+ code: 200
56
+ message: OK
57
+ headers:
58
+ x-content-type-options:
59
+ - nosniff
60
+ x-frame-options:
61
+ - SAMEORIGIN
62
+ expires:
63
+ - Mon, 07 Nov 2011 03:11:56 GMT
64
+ last-modified:
65
+ - Mon, 07 Nov 2011 03:11:45 GMT
66
+ content-type:
67
+ - application/atom+xml; charset=UTF-8
68
+ date:
69
+ - Mon, 07 Nov 2011 03:11:56 GMT
70
+ x-xss-protection:
71
+ - 1; mode=block
72
+ server:
73
+ - GSE
74
+ gdata-version:
75
+ - "1.0"
76
+ set-cookie:
77
+ - S=calendar=8xY9SyL529BdovY2vwW2NA;Expires=Tue, 06-Nov-2012 03:11:56 GMT;Secure
78
+ cache-control:
79
+ - private, max-age=0, must-revalidate, no-transform
80
+ vary:
81
+ - Accept, X-GData-Authorization, GData-Version
82
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-07T03:11:45.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/h20vrk3cb5mbrnpp7s4kthacig</id><published>2011-11-07T03:11:45.000Z</published><updated>2011-11-07T03:11:45.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=aDIwdnJrM2NiNW1icm5wcDdzNGt0aGFjaWcgc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/h20vrk3cb5mbrnpp7s4kthacig'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/h20vrk3cb5mbrnpp7s4kthacig/63456318705'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/h20vrk3cb5mbrnpp7s4kthacig/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-16T15:30:00.000-08:00' startTime='2011-11-16T14:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='h20vrk3cb5mbrnpp7s4kthacig@google.com'/></entry></feed>
83
+ http_version: "1.1"
84
+ - !ruby/struct:VCR::HTTPInteraction
85
+ request: !ruby/struct:VCR::Request
86
+ method: :get
87
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=GJ_WgU2aJ2oOyV90p5CbtA
88
+ body:
89
+ headers:
90
+ content-type:
91
+ - application/atom+xml
92
+ authorization:
93
+ - GoogleLogin auth=DQAAAKgAAAB5VB10pLtN6mxkPzom-IQbps8-Rogrx-OS1FBzcctys-K2OTRZdy68bxbfTgkQJkxCxJwwgn0bG5LgrTcMOkhL4anT4ZqRBhi0OQ44e88dgxM-GA4j_73CLFSiO2ISPc4o60sCI0rXlRb6wDy_0t1sW1ICWG1M41ANtZkKLRi8eB_jJOcaFolc6oOJIg1Tx3Qd9paA6sQwlX7kk3ekAJzfNFmG3NBXAlpGnkGzl4PObw
94
+ response: !ruby/struct:VCR::Response
95
+ status: !ruby/struct:VCR::ResponseStatus
96
+ code: 200
97
+ message: OK
98
+ headers:
99
+ x-content-type-options:
100
+ - nosniff
101
+ x-frame-options:
102
+ - SAMEORIGIN
103
+ expires:
104
+ - Mon, 07 Nov 2011 03:11:56 GMT
105
+ last-modified:
106
+ - Mon, 07 Nov 2011 03:11:56 GMT
107
+ content-type:
108
+ - application/atom+xml; charset=UTF-8
109
+ date:
110
+ - Mon, 07 Nov 2011 03:11:56 GMT
111
+ x-xss-protection:
112
+ - 1; mode=block
113
+ server:
114
+ - GSE
115
+ gdata-version:
116
+ - "1.0"
117
+ set-cookie:
118
+ - S=calendar=bRrHSuCZ8LMiHADRqA7nlQ;Expires=Tue, 06-Nov-2012 03:11:56 GMT;Secure
119
+ cache-control:
120
+ - private, max-age=0, must-revalidate, no-transform
121
+ vary:
122
+ - Accept, X-GData-Authorization, GData-Version
123
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-07T03:11:56.802Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-07T03:11:56.799Z</published><updated>2011-11-07T03:11:45.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-07T03:11:56.799Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-07T03:11:56.799Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-07T03:11:56.799Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
124
+ http_version: "1.1"
125
+ - !ruby/struct:VCR::HTTPInteraction
126
+ request: !ruby/struct:VCR::Request
127
+ method: :delete
128
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full/h20vrk3cb5mbrnpp7s4kthacig?gsessionid=GJ_WgU2aJ2oOyV90p5CbtA
129
+ body:
130
+ headers:
131
+ content-type:
132
+ - application/atom+xml
133
+ if-match:
134
+ - "*"
135
+ authorization:
136
+ - GoogleLogin auth=DQAAAKgAAAB5VB10pLtN6mxkPzom-IQbps8-Rogrx-OS1FBzcctys-K2OTRZdy68bxbfTgkQJkxCxJwwgn0bG5LgrTcMOkhL4anT4ZqRBhi0OQ44e88dgxM-GA4j_73CLFSiO2ISPc4o60sCI0rXlRb6wDy_0t1sW1ICWG1M41ANtZkKLRi8eB_jJOcaFolc6oOJIg1Tx3Qd9paA6sQwlX7kk3ekAJzfNFmG3NBXAlpGnkGzl4PObw
137
+ response: !ruby/struct:VCR::Response
138
+ status: !ruby/struct:VCR::ResponseStatus
139
+ code: 200
140
+ message: OK
141
+ headers:
142
+ x-content-type-options:
143
+ - nosniff
144
+ x-frame-options:
145
+ - SAMEORIGIN
146
+ expires:
147
+ - Mon, 07 Nov 2011 03:11:57 GMT
148
+ content-type:
149
+ - text/html
150
+ date:
151
+ - Mon, 07 Nov 2011 03:11:57 GMT
152
+ x-xss-protection:
153
+ - 1; mode=block
154
+ server:
155
+ - GSE
156
+ gdata-version:
157
+ - "1.0"
158
+ content-length:
159
+ - "0"
160
+ set-cookie:
161
+ - S=calendar=LQ49p3Hc64o2U-hMcHWa5w;Expires=Tue, 06-Nov-2012 03:11:57 GMT;Secure
162
+ cache-control:
163
+ - private, max-age=0
164
+ body:
165
+ http_version: "1.1"
166
+ - !ruby/struct:VCR::HTTPInteraction
167
+ request: !ruby/struct:VCR::Request
168
+ method: :get
169
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=ytt6rvQFhyHKp9E_kknxsw
170
+ body:
171
+ headers:
172
+ content-type:
173
+ - application/atom+xml
174
+ authorization:
175
+ - GoogleLogin auth=DQAAAKcAAACzM2heDYSb0j_Z7GRqXT0QWvidyOV-Az5FSQ-zYcMJLZTGUS2clGwJMm3uLxHECM11GGOqvoVkNn6qSYou6jlYYsw52IvOoLknJG1Tl8J9DiLfTFB_hrGfLOhSOlo43QeWjWfZjQLBhHGiC1EyhX1g52nibL26Sgm3j7Lo-7gXHrFC7jutqrDWGncBhB3_FYh2srS1zCXmJyki_MXrZ1tqusbXhj5woG4BBYqIZ7gwoA
176
+ response: !ruby/struct:VCR::Response
177
+ status: !ruby/struct:VCR::ResponseStatus
178
+ code: 200
179
+ message: OK
180
+ headers:
181
+ x-content-type-options:
182
+ - nosniff
183
+ x-frame-options:
184
+ - SAMEORIGIN
185
+ expires:
186
+ - Mon, 07 Nov 2011 03:11:58 GMT
187
+ last-modified:
188
+ - Mon, 07 Nov 2011 03:11:58 GMT
189
+ content-type:
190
+ - application/atom+xml; charset=UTF-8
191
+ date:
192
+ - Mon, 07 Nov 2011 03:11:58 GMT
193
+ x-xss-protection:
194
+ - 1; mode=block
195
+ server:
196
+ - GSE
197
+ gdata-version:
198
+ - "1.0"
199
+ set-cookie:
200
+ - S=calendar=KG499TLrv4CO4cbBLxlJCQ;Expires=Tue, 06-Nov-2012 03:11:58 GMT;Secure
201
+ cache-control:
202
+ - private, max-age=0, must-revalidate, no-transform
203
+ vary:
204
+ - Accept, X-GData-Authorization, GData-Version
205
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-07T03:11:58.399Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-07T03:11:58.377Z</published><updated>2011-11-07T03:11:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-07T03:11:58.379Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-07T03:11:58.376Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-07T03:11:58.376Z</published><updated>2011-11-07T02:08:39.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
206
+ http_version: "1.1"
207
+ - !ruby/struct:VCR::HTTPInteraction
208
+ request: !ruby/struct:VCR::Request
209
+ method: :get
210
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=ytt6rvQFhyHKp9E_kknxsw
211
+ body:
212
+ headers:
213
+ content-type:
214
+ - application/atom+xml
215
+ authorization:
216
+ - GoogleLogin auth=DQAAAKcAAACzM2heDYSb0j_Z7GRqXT0QWvidyOV-Az5FSQ-zYcMJLZTGUS2clGwJMm3uLxHECM11GGOqvoVkNn6qSYou6jlYYsw52IvOoLknJG1Tl8J9DiLfTFB_hrGfLOhSOlo43QeWjWfZjQLBhHGiC1EyhX1g52nibL26Sgm3j7Lo-7gXHrFC7jutqrDWGncBhB3_FYh2srS1zCXmJyki_MXrZ1tqusbXhj5woG4BBYqIZ7gwoA
217
+ response: !ruby/struct:VCR::Response
218
+ status: !ruby/struct:VCR::ResponseStatus
219
+ code: 200
220
+ message: OK
221
+ headers:
222
+ x-content-type-options:
223
+ - nosniff
224
+ x-frame-options:
225
+ - SAMEORIGIN
226
+ expires:
227
+ - Mon, 07 Nov 2011 03:11:58 GMT
228
+ last-modified:
229
+ - Mon, 07 Nov 2011 03:11:57 GMT
230
+ content-type:
231
+ - application/atom+xml; charset=UTF-8
232
+ date:
233
+ - Mon, 07 Nov 2011 03:11:58 GMT
234
+ x-xss-protection:
235
+ - 1; mode=block
236
+ server:
237
+ - GSE
238
+ gdata-version:
239
+ - "1.0"
240
+ set-cookie:
241
+ - S=calendar=y4llwrWehiSV5rc7iLPTPg;Expires=Tue, 06-Nov-2012 03:11:58 GMT;Secure
242
+ cache-control:
243
+ - private, max-age=0, must-revalidate, no-transform
244
+ vary:
245
+ - Accept, X-GData-Authorization, GData-Version
246
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-07T03:11:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></feed>
247
+ http_version: "1.1"
248
+ - !ruby/struct:VCR::HTTPInteraction
249
+ request: !ruby/struct:VCR::Request
250
+ method: :get
251
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=ZplVqhkY-tCPIXNUlUluLA
252
+ body:
253
+ headers:
254
+ content-type:
255
+ - application/atom+xml
256
+ authorization:
257
+ - GoogleLogin auth=DQAAAKYAAABU87BR-Y5XiA4I70w4gYHE4hyMsoCA2nzes8ZFmVPX-hD1rULWibzxWRJCbDtMJTzJJSOJSEAxwuzM1drsK69VwIcoF2Rd2kn-eamN3kBTboVrRGJ7ivtSVryIC9JtT4-wsa0sF319nDGKaD80ElCO8CGhwvXwkNCHl9xRGiXFOcWQXOeZ7AXOnPkRSsPpxlOUSyIuQ0sWWSG86rnyGaEXu8sTkKmQy4oZW96pmP5pXg
258
+ response: !ruby/struct:VCR::Response
259
+ status: !ruby/struct:VCR::ResponseStatus
260
+ code: 200
261
+ message: OK
262
+ headers:
263
+ x-frame-options:
264
+ - SAMEORIGIN
265
+ x-content-type-options:
266
+ - nosniff
267
+ last-modified:
268
+ - Tue, 08 Nov 2011 20:15:24 GMT
269
+ expires:
270
+ - Tue, 08 Nov 2011 20:15:24 GMT
271
+ content-type:
272
+ - application/atom+xml; charset=UTF-8
273
+ server:
274
+ - GSE
275
+ x-xss-protection:
276
+ - 1; mode=block
277
+ date:
278
+ - Tue, 08 Nov 2011 20:15:24 GMT
279
+ gdata-version:
280
+ - "1.0"
281
+ set-cookie:
282
+ - S=calendar=3em_NIe9QurwWPbExixxMQ;Expires=Wed, 07-Nov-2012 20:15:24 GMT;Secure
283
+ vary:
284
+ - Accept, X-GData-Authorization, GData-Version
285
+ cache-control:
286
+ - private, max-age=0, must-revalidate, no-transform
287
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:15:24.666Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:15:24.646Z</published><updated>2011-11-08T19:59:09.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:15:24.648Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:15:24.644Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:15:24.644Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
288
+ http_version: "1.1"
289
+ - !ruby/struct:VCR::HTTPInteraction
290
+ request: !ruby/struct:VCR::Request
291
+ method: :delete
292
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full/2560g3m2s666ujaujdolsadhak?gsessionid=ZplVqhkY-tCPIXNUlUluLA
293
+ body:
294
+ headers:
295
+ if-match:
296
+ - "*"
297
+ content-type:
298
+ - application/atom+xml
299
+ authorization:
300
+ - GoogleLogin auth=DQAAAKYAAABU87BR-Y5XiA4I70w4gYHE4hyMsoCA2nzes8ZFmVPX-hD1rULWibzxWRJCbDtMJTzJJSOJSEAxwuzM1drsK69VwIcoF2Rd2kn-eamN3kBTboVrRGJ7ivtSVryIC9JtT4-wsa0sF319nDGKaD80ElCO8CGhwvXwkNCHl9xRGiXFOcWQXOeZ7AXOnPkRSsPpxlOUSyIuQ0sWWSG86rnyGaEXu8sTkKmQy4oZW96pmP5pXg
301
+ response: !ruby/struct:VCR::Response
302
+ status: !ruby/struct:VCR::ResponseStatus
303
+ code: 200
304
+ message: OK
305
+ headers:
306
+ x-frame-options:
307
+ - SAMEORIGIN
308
+ x-content-type-options:
309
+ - nosniff
310
+ expires:
311
+ - Tue, 08 Nov 2011 20:15:25 GMT
312
+ content-type:
313
+ - text/html
314
+ server:
315
+ - GSE
316
+ x-xss-protection:
317
+ - 1; mode=block
318
+ date:
319
+ - Tue, 08 Nov 2011 20:15:25 GMT
320
+ content-length:
321
+ - "0"
322
+ gdata-version:
323
+ - "1.0"
324
+ set-cookie:
325
+ - S=calendar=UnM3cOVP6wbzJyNu41Ozmw;Expires=Wed, 07-Nov-2012 20:15:24 GMT;Secure
326
+ cache-control:
327
+ - private, max-age=0
328
+ body:
329
+ http_version: "1.1"
330
+ - !ruby/struct:VCR::HTTPInteraction
331
+ request: !ruby/struct:VCR::Request
332
+ method: :get
333
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=ZplVqhkY-tCPIXNUlUluLA
334
+ body:
335
+ headers:
336
+ content-type:
337
+ - application/atom+xml
338
+ authorization:
339
+ - GoogleLogin auth=DQAAAKYAAABU87BR-Y5XiA4I70w4gYHE4hyMsoCA2nzes8ZFmVPX-hD1rULWibzxWRJCbDtMJTzJJSOJSEAxwuzM1drsK69VwIcoF2Rd2kn-eamN3kBTboVrRGJ7ivtSVryIC9JtT4-wsa0sF319nDGKaD80ElCO8CGhwvXwkNCHl9xRGiXFOcWQXOeZ7AXOnPkRSsPpxlOUSyIuQ0sWWSG86rnyGaEXu8sTkKmQy4oZW96pmP5pXg
340
+ response: !ruby/struct:VCR::Response
341
+ status: !ruby/struct:VCR::ResponseStatus
342
+ code: 200
343
+ message: OK
344
+ headers:
345
+ x-content-type-options:
346
+ - nosniff
347
+ x-frame-options:
348
+ - SAMEORIGIN
349
+ expires:
350
+ - Tue, 08 Nov 2011 20:15:46 GMT
351
+ last-modified:
352
+ - Tue, 08 Nov 2011 20:15:24 GMT
353
+ content-type:
354
+ - application/atom+xml; charset=UTF-8
355
+ date:
356
+ - Tue, 08 Nov 2011 20:15:46 GMT
357
+ x-xss-protection:
358
+ - 1; mode=block
359
+ server:
360
+ - GSE
361
+ gdata-version:
362
+ - "1.0"
363
+ set-cookie:
364
+ - S=calendar=n_VZJwrKfz30A9NfcgF3-w;Expires=Wed, 07-Nov-2012 20:15:46 GMT;Secure
365
+ cache-control:
366
+ - private, max-age=0, must-revalidate, no-transform
367
+ vary:
368
+ - Accept, X-GData-Authorization, GData-Version
369
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T20:15:24.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8</id><published>2011-11-08T08:55:41.000Z</published><updated>2011-11-08T09:13:57.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>destination to Market st</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=YWtsaWJoaW4xcXByMDVoajFyMnFqbWc3azggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/63456426837'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/aklibhin1qpr05hj1r2qjmg7k8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-08T02:30:00.000-08:00' startTime='2011-11-08T01:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='5'/><gCal:uid value='aklibhin1qpr05hj1r2qjmg7k8@google.com'/></entry><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-07T03:13:03.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>create user bob</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456318783'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
370
+ http_version: "1.1"
371
+ - !ruby/struct:VCR::HTTPInteraction
372
+ request: !ruby/struct:VCR::Request
373
+ method: :get
374
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=TKytUIB-miprMCuE-Mx4Hw
375
+ body:
376
+ headers:
377
+ content-type:
378
+ - application/atom+xml
379
+ authorization:
380
+ - GoogleLogin auth=DQAAAKgAAABoI0sRGHu2X1Q6v8jeQ2pLOP5vLR6Gv2ZB3EpVn99MYduFtKLSmQjBflNiBbtR3HSOzZPfSrUM2aNXhw3cHRcAzFc5BDfA6cnD2IrJsT5LatVfOnJ3JiillQ2g5_dIKUXd2-wdZFztNWkj0OnzRKLzsCXe_JnMx4fwX2NjPeoyPCBM0xrlcW2OWcmqqMazY6gxNyYyu9_A9o5Paik1cnTv8g0AXJcRt9nET_w3F_V-iA
381
+ response: !ruby/struct:VCR::Response
382
+ status: !ruby/struct:VCR::ResponseStatus
383
+ code: 200
384
+ message: OK
385
+ headers:
386
+ x-frame-options:
387
+ - SAMEORIGIN
388
+ x-content-type-options:
389
+ - nosniff
390
+ last-modified:
391
+ - Tue, 08 Nov 2011 20:17:17 GMT
392
+ expires:
393
+ - Tue, 08 Nov 2011 20:17:52 GMT
394
+ content-type:
395
+ - application/atom+xml; charset=UTF-8
396
+ server:
397
+ - GSE
398
+ x-xss-protection:
399
+ - 1; mode=block
400
+ date:
401
+ - Tue, 08 Nov 2011 20:17:52 GMT
402
+ gdata-version:
403
+ - "1.0"
404
+ set-cookie:
405
+ - S=calendar=eM1F12mDbLD3XRX6DowQ3Q;Expires=Wed, 07-Nov-2012 20:17:52 GMT;Secure
406
+ vary:
407
+ - Accept, X-GData-Authorization, GData-Version
408
+ cache-control:
409
+ - private, max-age=0, must-revalidate, no-transform
410
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T20:17:17.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o</id><published>2011-11-07T03:13:03.000Z</published><updated>2011-11-08T20:17:17.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=OGEycmpnNjBmcmwxN2FsMmU0M3U3cnQwNm8gc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/63456466637'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-17T16:30:00.000-08:00' startTime='2011-11-17T15:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='8a2rjg60frl17al2e43u7rt06o@google.com'/></entry></feed>
411
+ http_version: "1.1"
412
+ - !ruby/struct:VCR::HTTPInteraction
413
+ request: !ruby/struct:VCR::Request
414
+ method: :get
415
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=TKytUIB-miprMCuE-Mx4Hw
416
+ body:
417
+ headers:
418
+ content-type:
419
+ - application/atom+xml
420
+ authorization:
421
+ - GoogleLogin auth=DQAAAKgAAABoI0sRGHu2X1Q6v8jeQ2pLOP5vLR6Gv2ZB3EpVn99MYduFtKLSmQjBflNiBbtR3HSOzZPfSrUM2aNXhw3cHRcAzFc5BDfA6cnD2IrJsT5LatVfOnJ3JiillQ2g5_dIKUXd2-wdZFztNWkj0OnzRKLzsCXe_JnMx4fwX2NjPeoyPCBM0xrlcW2OWcmqqMazY6gxNyYyu9_A9o5Paik1cnTv8g0AXJcRt9nET_w3F_V-iA
422
+ response: !ruby/struct:VCR::Response
423
+ status: !ruby/struct:VCR::ResponseStatus
424
+ code: 200
425
+ message: OK
426
+ headers:
427
+ x-frame-options:
428
+ - SAMEORIGIN
429
+ x-content-type-options:
430
+ - nosniff
431
+ last-modified:
432
+ - Tue, 08 Nov 2011 20:17:53 GMT
433
+ expires:
434
+ - Tue, 08 Nov 2011 20:17:53 GMT
435
+ content-type:
436
+ - application/atom+xml; charset=UTF-8
437
+ server:
438
+ - GSE
439
+ x-xss-protection:
440
+ - 1; mode=block
441
+ date:
442
+ - Tue, 08 Nov 2011 20:17:53 GMT
443
+ gdata-version:
444
+ - "1.0"
445
+ set-cookie:
446
+ - S=calendar=lFDJdxR_g8zhrqyft4M-TQ;Expires=Wed, 07-Nov-2012 20:17:53 GMT;Secure
447
+ vary:
448
+ - Accept, X-GData-Authorization, GData-Version
449
+ cache-control:
450
+ - private, max-age=0, must-revalidate, no-transform
451
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:17:53.334Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:17:53.326Z</published><updated>2011-11-08T20:17:17.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:17:53.330Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:17:53.326Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:17:53.326Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
452
+ http_version: "1.1"
453
+ - !ruby/struct:VCR::HTTPInteraction
454
+ request: !ruby/struct:VCR::Request
455
+ method: :delete
456
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full/8a2rjg60frl17al2e43u7rt06o?gsessionid=TKytUIB-miprMCuE-Mx4Hw
457
+ body:
458
+ headers:
459
+ if-match:
460
+ - "*"
461
+ content-type:
462
+ - application/atom+xml
463
+ authorization:
464
+ - GoogleLogin auth=DQAAAKgAAABoI0sRGHu2X1Q6v8jeQ2pLOP5vLR6Gv2ZB3EpVn99MYduFtKLSmQjBflNiBbtR3HSOzZPfSrUM2aNXhw3cHRcAzFc5BDfA6cnD2IrJsT5LatVfOnJ3JiillQ2g5_dIKUXd2-wdZFztNWkj0OnzRKLzsCXe_JnMx4fwX2NjPeoyPCBM0xrlcW2OWcmqqMazY6gxNyYyu9_A9o5Paik1cnTv8g0AXJcRt9nET_w3F_V-iA
465
+ response: !ruby/struct:VCR::Response
466
+ status: !ruby/struct:VCR::ResponseStatus
467
+ code: 200
468
+ message: OK
469
+ headers:
470
+ x-frame-options:
471
+ - SAMEORIGIN
472
+ x-content-type-options:
473
+ - nosniff
474
+ expires:
475
+ - Tue, 08 Nov 2011 20:17:53 GMT
476
+ content-type:
477
+ - text/html
478
+ server:
479
+ - GSE
480
+ x-xss-protection:
481
+ - 1; mode=block
482
+ date:
483
+ - Tue, 08 Nov 2011 20:17:53 GMT
484
+ content-length:
485
+ - "0"
486
+ gdata-version:
487
+ - "1.0"
488
+ set-cookie:
489
+ - S=calendar=QzgF3bvmtnxdWWQH-q4_Gg;Expires=Wed, 07-Nov-2012 20:17:53 GMT;Secure
490
+ cache-control:
491
+ - private, max-age=0
492
+ body:
493
+ http_version: "1.1"
494
+ - !ruby/struct:VCR::HTTPInteraction
495
+ request: !ruby/struct:VCR::Request
496
+ method: :get
497
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=ZDKOpiT9lu6MhOVHQTUgYw
498
+ body:
499
+ headers:
500
+ content-type:
501
+ - application/atom+xml
502
+ authorization:
503
+ - GoogleLogin auth=DQAAAKcAAABtV4KLuuNWohP-y03AshC1t0zLb9_7EEuSPSteQBe4WEU8KjC2uhOUXbXiIoGBN2WIOrScBQi5iahVxXfJhdIeg4_QnABhyxgzQV4Q7qCxtzg7bDZzreKWmLodaa9QBTD4YWT0Tpc3qRnptLPYv6rRSPJIcYlLz93EVq-nAgBFgSAl4r6Vg2nYdwidb9_LVerUpYd2GwXBjH3h-OL1miheFMFBlBMmOn0BispIW56Oyw
504
+ response: !ruby/struct:VCR::Response
505
+ status: !ruby/struct:VCR::ResponseStatus
506
+ code: 200
507
+ message: OK
508
+ headers:
509
+ x-content-type-options:
510
+ - nosniff
511
+ x-frame-options:
512
+ - SAMEORIGIN
513
+ expires:
514
+ - Tue, 08 Nov 2011 20:18:09 GMT
515
+ last-modified:
516
+ - Tue, 08 Nov 2011 20:17:53 GMT
517
+ content-type:
518
+ - application/atom+xml; charset=UTF-8
519
+ date:
520
+ - Tue, 08 Nov 2011 20:18:09 GMT
521
+ x-xss-protection:
522
+ - 1; mode=block
523
+ server:
524
+ - GSE
525
+ gdata-version:
526
+ - "1.0"
527
+ set-cookie:
528
+ - S=calendar=s1_huZlD0953jaROXtugTA;Expires=Wed, 07-Nov-2012 20:18:09 GMT;Secure
529
+ cache-control:
530
+ - private, max-age=0, must-revalidate, no-transform
531
+ vary:
532
+ - Accept, X-GData-Authorization, GData-Version
533
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T20:17:53.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></feed>
534
+ http_version: "1.1"
535
+ - !ruby/struct:VCR::HTTPInteraction
536
+ request: !ruby/struct:VCR::Request
537
+ method: :post
538
+ uri: https://www.google.com:443/accounts/ClientLogin
539
+ body: Passwd=blabla&service=cl&accountType=HOSTED_OR_GOOGLE&Email=someone%40gmail.com&source=northworld.com-googlecalendar-integration
540
+ headers:
541
+ content-type:
542
+ - application/x-www-form-urlencoded
543
+ response: !ruby/struct:VCR::Response
544
+ status: !ruby/struct:VCR::ResponseStatus
545
+ code: 200
546
+ message: OK
547
+ headers:
548
+ x-content-type-options:
549
+ - nosniff
550
+ expires:
551
+ - Mon, 01-Jan-1990 00:00:00 GMT
552
+ content-type:
553
+ - text/plain
554
+ server:
555
+ - GSE
556
+ x-xss-protection:
557
+ - 1; mode=block
558
+ date:
559
+ - Tue, 08 Nov 2011 20:18:27 GMT
560
+ content-length:
561
+ - "755"
562
+ cache-control:
563
+ - no-cache, no-store
564
+ pragma:
565
+ - no-cache
566
+ body: |
567
+ SID=DQAAAKUAAAAiog4MwRmoRNOBmolvJ8nVvJVHr-thatwG0RhHxan2O86MsshPiDJx_olqRietGytG5FpV4ro0j1hDX1bxQ6bN40qJGqotPA9dx6OWqiBECaOmRAi61E6rdTNYmAWtKKDhr9dtoiD-5t6OQhvti3cUNUKFhxjTR3RWtQe6l7A3up-j2GfWYmH7QyW7QDU_1GazmLvpwGDoCAgLX_L1WY9do7JM4arPYxkMtsM-UfJjMw
568
+ LSID=DQAAAKcAAABMpKwU62CVjM0K_WG85syeVK4BxoYGFDN0GK5VMnSDurHtr_R4q9aIPzbf1ZtdqspkpJ2CZ7kh-7MMTZorgypdfKdIoa0s-YeK-n_0SXMi60eggNMRQ8gkQGFxR8Ada_1IHnW-ln1LmuAIwDLTlZpZDwRfj7uu7e5Z9XDLxfsuj7tgEiAMPgjWJWA_alGCfaTcx3gu8K5xa_Gyd6gyttZqjrHHlL82HB1Y7Q8hNLBU3g
569
+ Auth=DQAAAKgAAABMpKwU62CVjM0K_WG85syeVK4BxoYGFDN0GK5VMnSDurHtr_R4q9aIPzbf1ZtdqsoLULWdujSrDY35rnrbtRMroYlKh9Cr_00VbLGVD_Uw-iQJhddokYhgTq3v3dZYXu7KdRRIRIrPtdgSXD77xuf16-DHoM0ff9iCMoz6VE26wv9pblYvs4zooTzAeyqmuyoozH14OrA7a8SKHw_AfdxZ_tRbuNIENXG-ntG57xRNDw
570
+
571
+ http_version: "1.1"
572
+ - !ruby/struct:VCR::HTTPInteraction
573
+ request: !ruby/struct:VCR::Request
574
+ method: :get
575
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full
576
+ body:
577
+ headers:
578
+ content-type:
579
+ - application/atom+xml
580
+ authorization:
581
+ - GoogleLogin auth=DQAAAKgAAABMpKwU62CVjM0K_WG85syeVK4BxoYGFDN0GK5VMnSDurHtr_R4q9aIPzbf1ZtdqsoLULWdujSrDY35rnrbtRMroYlKh9Cr_00VbLGVD_Uw-iQJhddokYhgTq3v3dZYXu7KdRRIRIrPtdgSXD77xuf16-DHoM0ff9iCMoz6VE26wv9pblYvs4zooTzAeyqmuyoozH14OrA7a8SKHw_AfdxZ_tRbuNIENXG-ntG57xRNDw
582
+ response: !ruby/struct:VCR::Response
583
+ status: !ruby/struct:VCR::ResponseStatus
584
+ code: 302
585
+ message: Moved Temporarily
586
+ headers:
587
+ x-frame-options:
588
+ - SAMEORIGIN
589
+ x-content-type-options:
590
+ - nosniff
591
+ location:
592
+ - https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=lM_P3Y0b63XD1UnkGdeMQw
593
+ expires:
594
+ - Tue, 08 Nov 2011 20:18:27 GMT
595
+ content-type:
596
+ - text/html; charset=UTF-8
597
+ server:
598
+ - GSE
599
+ x-xss-protection:
600
+ - 1; mode=block
601
+ date:
602
+ - Tue, 08 Nov 2011 20:18:27 GMT
603
+ set-cookie:
604
+ - S=calendar=lM_P3Y0b63XD1UnkGdeMQw;Expires=Wed, 07-Nov-2012 20:18:27 GMT;Secure
605
+ cache-control:
606
+ - private, max-age=0
607
+ body: |
608
+ <HTML>
609
+ <HEAD>
610
+ <TITLE>Moved Temporarily</TITLE>
611
+ </HEAD>
612
+ <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
613
+ <H1>Moved Temporarily</H1>
614
+ The document has moved <A HREF="https://www.google.com/calendar/feeds/default/allcalendars/full?gsessionid=lM_P3Y0b63XD1UnkGdeMQw">here</A>.
615
+ </BODY>
616
+ </HTML>
617
+
618
+ http_version: "1.1"
619
+ - !ruby/struct:VCR::HTTPInteraction
620
+ request: !ruby/struct:VCR::Request
621
+ method: :get
622
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=lM_P3Y0b63XD1UnkGdeMQw
623
+ body:
624
+ headers:
625
+ content-type:
626
+ - application/atom+xml
627
+ authorization:
628
+ - GoogleLogin auth=DQAAAKgAAABMpKwU62CVjM0K_WG85syeVK4BxoYGFDN0GK5VMnSDurHtr_R4q9aIPzbf1ZtdqsoLULWdujSrDY35rnrbtRMroYlKh9Cr_00VbLGVD_Uw-iQJhddokYhgTq3v3dZYXu7KdRRIRIrPtdgSXD77xuf16-DHoM0ff9iCMoz6VE26wv9pblYvs4zooTzAeyqmuyoozH14OrA7a8SKHw_AfdxZ_tRbuNIENXG-ntG57xRNDw
629
+ response: !ruby/struct:VCR::Response
630
+ status: !ruby/struct:VCR::ResponseStatus
631
+ code: 200
632
+ message: OK
633
+ headers:
634
+ x-frame-options:
635
+ - SAMEORIGIN
636
+ x-content-type-options:
637
+ - nosniff
638
+ last-modified:
639
+ - Tue, 08 Nov 2011 20:18:28 GMT
640
+ expires:
641
+ - Tue, 08 Nov 2011 20:18:28 GMT
642
+ content-type:
643
+ - application/atom+xml; charset=UTF-8
644
+ server:
645
+ - GSE
646
+ x-xss-protection:
647
+ - 1; mode=block
648
+ date:
649
+ - Tue, 08 Nov 2011 20:18:28 GMT
650
+ gdata-version:
651
+ - "1.0"
652
+ set-cookie:
653
+ - S=calendar=id6cmsvxc8hXOfcNKXdgMw;Expires=Wed, 07-Nov-2012 20:18:27 GMT;Secure
654
+ vary:
655
+ - Accept, X-GData-Authorization, GData-Version
656
+ cache-control:
657
+ - private, max-age=0, must-revalidate, no-transform
658
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:18:28.084Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:18:28.072Z</published><updated>2011-11-08T20:18:20.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:18:28.075Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:18:28.071Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:18:28.071Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
659
+ http_version: "1.1"
660
+ - !ruby/struct:VCR::HTTPInteraction
661
+ request: !ruby/struct:VCR::Request
662
+ method: :get
663
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=lM_P3Y0b63XD1UnkGdeMQw
664
+ body:
665
+ headers:
666
+ content-type:
667
+ - application/atom+xml
668
+ authorization:
669
+ - GoogleLogin auth=DQAAAKgAAABMpKwU62CVjM0K_WG85syeVK4BxoYGFDN0GK5VMnSDurHtr_R4q9aIPzbf1ZtdqsoLULWdujSrDY35rnrbtRMroYlKh9Cr_00VbLGVD_Uw-iQJhddokYhgTq3v3dZYXu7KdRRIRIrPtdgSXD77xuf16-DHoM0ff9iCMoz6VE26wv9pblYvs4zooTzAeyqmuyoozH14OrA7a8SKHw_AfdxZ_tRbuNIENXG-ntG57xRNDw
670
+ response: !ruby/struct:VCR::Response
671
+ status: !ruby/struct:VCR::ResponseStatus
672
+ code: 200
673
+ message: OK
674
+ headers:
675
+ x-frame-options:
676
+ - SAMEORIGIN
677
+ x-content-type-options:
678
+ - nosniff
679
+ last-modified:
680
+ - Tue, 08 Nov 2011 20:18:20 GMT
681
+ expires:
682
+ - Tue, 08 Nov 2011 20:18:28 GMT
683
+ content-type:
684
+ - application/atom+xml; charset=UTF-8
685
+ server:
686
+ - GSE
687
+ x-xss-protection:
688
+ - 1; mode=block
689
+ date:
690
+ - Tue, 08 Nov 2011 20:18:28 GMT
691
+ gdata-version:
692
+ - "1.0"
693
+ set-cookie:
694
+ - S=calendar=2NMy7i8Ssga9YMaQr6GdFg;Expires=Wed, 07-Nov-2012 20:18:28 GMT;Secure
695
+ vary:
696
+ - Accept, X-GData-Authorization, GData-Version
697
+ cache-control:
698
+ - private, max-age=0, must-revalidate, no-transform
699
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005' xmlns:gd='http://schemas.google.com/g/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T20:18:20.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>1</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/><entry><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full/hd44c7oniabdofperh9viod3f8</id><published>2011-11-08T20:18:20.000Z</published><updated>2011-11-08T20:18:20.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>movie transformers</title><content type='text'/><link rel='alternate' type='text/html' href='https://www.google.com/calendar/event?eid=aGQ0NGM3b25pYWJkb2ZwZXJoOXZpb2QzZjggc3RpZm91MTRAbQ' title='alternate'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/hd44c7oniabdofperh9viod3f8'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/hd44c7oniabdofperh9viod3f8/63456466700'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gd:comments><gd:feedLink href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/hd44c7oniabdofperh9viod3f8/comments'/></gd:comments><gd:eventStatus value='http://schemas.google.com/g/2005#event.confirmed'/><gd:where valueString=''/><gd:who email='someone@gmail.com' rel='http://schemas.google.com/g/2005#event.organizer' valueString='someone@gmail.com'/><gd:when endTime='2011-11-10T10:30:00.000-08:00' startTime='2011-11-10T09:30:00.000-08:00'><gd:reminder method='email' minutes='10'/><gd:reminder method='alert' minutes='10'/></gd:when><gd:transparency value='http://schemas.google.com/g/2005#event.opaque'/><gd:visibility value='http://schemas.google.com/g/2005#event.default'/><gCal:anyoneCanAddSelf value='false'/><gCal:guestsCanInviteOthers value='true'/><gCal:guestsCanModify value='false'/><gCal:guestsCanSeeGuests value='true'/><gCal:sequence value='0'/><gCal:uid value='hd44c7oniabdofperh9viod3f8@google.com'/></entry></feed>
700
+ http_version: "1.1"
701
+ - !ruby/struct:VCR::HTTPInteraction
702
+ request: !ruby/struct:VCR::Request
703
+ method: :get
704
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full?gsessionid=lM_P3Y0b63XD1UnkGdeMQw
705
+ body:
706
+ headers:
707
+ content-type:
708
+ - application/atom+xml
709
+ authorization:
710
+ - GoogleLogin auth=DQAAAKgAAABMpKwU62CVjM0K_WG85syeVK4BxoYGFDN0GK5VMnSDurHtr_R4q9aIPzbf1ZtdqsoLULWdujSrDY35rnrbtRMroYlKh9Cr_00VbLGVD_Uw-iQJhddokYhgTq3v3dZYXu7KdRRIRIrPtdgSXD77xuf16-DHoM0ff9iCMoz6VE26wv9pblYvs4zooTzAeyqmuyoozH14OrA7a8SKHw_AfdxZ_tRbuNIENXG-ntG57xRNDw
711
+ response: !ruby/struct:VCR::Response
712
+ status: !ruby/struct:VCR::ResponseStatus
713
+ code: 200
714
+ message: OK
715
+ headers:
716
+ x-frame-options:
717
+ - SAMEORIGIN
718
+ x-content-type-options:
719
+ - nosniff
720
+ last-modified:
721
+ - Tue, 08 Nov 2011 20:18:28 GMT
722
+ expires:
723
+ - Tue, 08 Nov 2011 20:18:28 GMT
724
+ content-type:
725
+ - application/atom+xml; charset=UTF-8
726
+ server:
727
+ - GSE
728
+ x-xss-protection:
729
+ - 1; mode=block
730
+ date:
731
+ - Tue, 08 Nov 2011 20:18:28 GMT
732
+ gdata-version:
733
+ - "1.0"
734
+ set-cookie:
735
+ - S=calendar=rU788IhC1ZWyQP8N0g9-Nw;Expires=Wed, 07-Nov-2012 20:18:28 GMT;Secure
736
+ vary:
737
+ - Accept, X-GData-Authorization, GData-Version
738
+ cache-control:
739
+ - private, max-age=0, must-revalidate, no-transform
740
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:18:28.750Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:18:28.748Z</published><updated>2011-11-08T20:18:20.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:18:28.748Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:18:28.749Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:18:28.749Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
741
+ http_version: "1.1"
742
+ - !ruby/struct:VCR::HTTPInteraction
743
+ request: !ruby/struct:VCR::Request
744
+ method: :delete
745
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full/hd44c7oniabdofperh9viod3f8?gsessionid=lM_P3Y0b63XD1UnkGdeMQw
746
+ body:
747
+ headers:
748
+ if-match:
749
+ - "*"
750
+ content-type:
751
+ - application/atom+xml
752
+ authorization:
753
+ - GoogleLogin auth=DQAAAKgAAABMpKwU62CVjM0K_WG85syeVK4BxoYGFDN0GK5VMnSDurHtr_R4q9aIPzbf1ZtdqsoLULWdujSrDY35rnrbtRMroYlKh9Cr_00VbLGVD_Uw-iQJhddokYhgTq3v3dZYXu7KdRRIRIrPtdgSXD77xuf16-DHoM0ff9iCMoz6VE26wv9pblYvs4zooTzAeyqmuyoozH14OrA7a8SKHw_AfdxZ_tRbuNIENXG-ntG57xRNDw
754
+ response: !ruby/struct:VCR::Response
755
+ status: !ruby/struct:VCR::ResponseStatus
756
+ code: 200
757
+ message: OK
758
+ headers:
759
+ x-frame-options:
760
+ - SAMEORIGIN
761
+ x-content-type-options:
762
+ - nosniff
763
+ expires:
764
+ - Tue, 08 Nov 2011 20:18:29 GMT
765
+ content-type:
766
+ - text/html
767
+ server:
768
+ - GSE
769
+ x-xss-protection:
770
+ - 1; mode=block
771
+ date:
772
+ - Tue, 08 Nov 2011 20:18:29 GMT
773
+ content-length:
774
+ - "0"
775
+ gdata-version:
776
+ - "1.0"
777
+ set-cookie:
778
+ - S=calendar=6n5fM74pN7D5ygrLi9iYAA;Expires=Wed, 07-Nov-2012 20:18:29 GMT;Secure
779
+ cache-control:
780
+ - private, max-age=0
781
+ body:
782
+ http_version: "1.1"
783
+ - !ruby/struct:VCR::HTTPInteraction
784
+ request: !ruby/struct:VCR::Request
785
+ method: :post
786
+ uri: https://www.google.com:443/accounts/ClientLogin
787
+ body: Passwd=blabla&service=cl&accountType=HOSTED_OR_GOOGLE&Email=someone%40gmail.com&source=northworld.com-googlecalendar-integration
788
+ headers:
789
+ content-type:
790
+ - application/x-www-form-urlencoded
791
+ response: !ruby/struct:VCR::Response
792
+ status: !ruby/struct:VCR::ResponseStatus
793
+ code: 200
794
+ message: OK
795
+ headers:
796
+ x-content-type-options:
797
+ - nosniff
798
+ expires:
799
+ - Mon, 01-Jan-1990 00:00:00 GMT
800
+ content-type:
801
+ - text/plain
802
+ server:
803
+ - GSE
804
+ x-xss-protection:
805
+ - 1; mode=block
806
+ date:
807
+ - Tue, 08 Nov 2011 20:18:29 GMT
808
+ content-length:
809
+ - "755"
810
+ cache-control:
811
+ - no-cache, no-store
812
+ pragma:
813
+ - no-cache
814
+ body: |
815
+ SID=DQAAAKYAAABlXxXhLK0vpbcGZfJ9yqn6eYlEPIF4BF5KrkJrK1QOMaVdhwAk24VfpaUfp8UsEMkebCqn63LcKTddQA4SeBDRb7_fJbXoQI3bL56ZHIo64vlaZERBGr1zArIHsHb1k7AjDWl_r7mxzIJiZnYSa5aKsQ2ChfAH9YhdOAw28X5SDnlDD6jlUUfU55TL65nQ2exz_7jnb6YCBwiWqNbPQw5ZAHcfnPCuSAy5BuB8hBN-6g
816
+ LSID=DQAAAKgAAAC6q1Iiqp9Vw9ZKE8yJ2-JFHZIHhZ5qXE5NZqcjfx96LKQY70khpzCaPgDyl52tICgVnYjRagSvZ6UR6HSPJRaf6rqflj0TBPZsQ6hdMK6Ow7LqrbaV88Xo8sSusLKaJmGZ1J0xItDClAatqChAm_GuTwEPspb7_HPJd-cjthXlB6p6Ptn6g-NE0Ln6y5pLWLnhw0M91rzS1sgTF3oDSrz2JuOisfRGYB7-Wv3IW812lg
817
+ Auth=DQAAAKgAAAC6q1Iiqp9Vw9ZKE8yJ2-JFHZIHhZ5qXE5NZqcjfx96LKQY70khpzCaPgDyl52tIChWJqsiR-DX-TADlD_ayHE2neDBfROc9sbm00FaRipm53anHwSmqC5JUU8FVBe243xyaZ6tIF6WRoiTzT_Nuf6efy5rA9V2CUC4Gxrw0hrtsn4tln36eqFm0jbRzpINELU4q-3v7ziwrRGRv7xe7zlZ5DBnp5iGOFwZ3ztZATYyGw
818
+
819
+ http_version: "1.1"
820
+ - !ruby/struct:VCR::HTTPInteraction
821
+ request: !ruby/struct:VCR::Request
822
+ method: :get
823
+ uri: https://www.google.com:443/calendar/feeds/default/allcalendars/full
824
+ body:
825
+ headers:
826
+ content-type:
827
+ - application/atom+xml
828
+ authorization:
829
+ - GoogleLogin auth=DQAAAKgAAAC6q1Iiqp9Vw9ZKE8yJ2-JFHZIHhZ5qXE5NZqcjfx96LKQY70khpzCaPgDyl52tIChWJqsiR-DX-TADlD_ayHE2neDBfROc9sbm00FaRipm53anHwSmqC5JUU8FVBe243xyaZ6tIF6WRoiTzT_Nuf6efy5rA9V2CUC4Gxrw0hrtsn4tln36eqFm0jbRzpINELU4q-3v7ziwrRGRv7xe7zlZ5DBnp5iGOFwZ3ztZATYyGw
830
+ response: !ruby/struct:VCR::Response
831
+ status: !ruby/struct:VCR::ResponseStatus
832
+ code: 200
833
+ message: OK
834
+ headers:
835
+ x-frame-options:
836
+ - SAMEORIGIN
837
+ x-content-type-options:
838
+ - nosniff
839
+ last-modified:
840
+ - Tue, 08 Nov 2011 20:18:29 GMT
841
+ expires:
842
+ - Tue, 08 Nov 2011 20:18:29 GMT
843
+ content-type:
844
+ - application/atom+xml; charset=UTF-8
845
+ server:
846
+ - GSE
847
+ x-xss-protection:
848
+ - 1; mode=block
849
+ date:
850
+ - Tue, 08 Nov 2011 20:18:29 GMT
851
+ gdata-version:
852
+ - "1.0"
853
+ set-cookie:
854
+ - S=calendar=SOEqRo2T_mOj6N539i7QNQ;Expires=Wed, 07-Nov-2012 20:18:29 GMT;Secure
855
+ vary:
856
+ - Accept, X-GData-Authorization, GData-Version
857
+ cache-control:
858
+ - private, max-age=0, must-revalidate, no-transform
859
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/default/allcalendars/full</id><updated>2011-11-08T20:18:29.954Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>someone@gmail.com's Calendar List</title><link rel='alternate' type='text/html' href='https://www.google.com/calendar/render'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:startIndex>1</openSearch:startIndex><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com</id><published>2011-11-08T20:18:29.942Z</published><updated>2011-11-08T20:18:29.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>sirical</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/someone%40gmail.com'/><author><name>someone@gmail.com</name><email>someone@gmail.com</email></author><gCal:accesslevel value='owner'/><gCal:color value='#2952A3'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com</id><published>2011-11-08T20:18:29.944Z</published><updated>2011-11-07T02:56:14.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>test</title><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/private/full'/><link rel='http://schemas.google.com/acl/2007#accessControlList' type='application/atom+xml' href='https://www.google.com/calendar/feeds/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com/acl/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/vjr1nsm7oi8g9tn708n0afp0rk%40group.calendar.google.com'/><author><name>test</name></author><gCal:accesslevel value='owner'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='UTC'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com</id><published>2011-11-08T20:18:29.941Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>Contacts' birthdays and events</title><summary type='text'>Your contacts' birthdays and anniversaries</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/%23contacts%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/%23contacts%40group.v.calendar.google.com'/><author><name>Contacts</name></author><gCal:accesslevel value='read'/><gCal:color value='#875509'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry><entry><id>http://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com</id><published>2011-11-08T20:18:29.941Z</published><updated>2011-11-08T13:23:36.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/gCal/2005#calendarmeta'/><title type='text'>US Holidays</title><summary type='text'>US Holidays</summary><content type='application/atom+xml' src='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='alternate' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='http://schemas.google.com/gCal/2005#eventFeed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/en.usa%23holiday%40group.v.calendar.google.com/private/full'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><link rel='edit' type='application/atom+xml' href='https://www.google.com/calendar/feeds/default/allcalendars/full/en.usa%23holiday%40group.v.calendar.google.com'/><author><name>US Holidays</name></author><gCal:accesslevel value='read'/><gCal:color value='#2F6309'/><gCal:hidden value='false'/><gCal:selected value='true'/><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></entry></feed>
860
+ http_version: "1.1"
861
+ - !ruby/struct:VCR::HTTPInteraction
862
+ request: !ruby/struct:VCR::Request
863
+ method: :get
864
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full
865
+ body:
866
+ headers:
867
+ content-type:
868
+ - application/atom+xml
869
+ authorization:
870
+ - GoogleLogin auth=DQAAAKgAAAC6q1Iiqp9Vw9ZKE8yJ2-JFHZIHhZ5qXE5NZqcjfx96LKQY70khpzCaPgDyl52tIChWJqsiR-DX-TADlD_ayHE2neDBfROc9sbm00FaRipm53anHwSmqC5JUU8FVBe243xyaZ6tIF6WRoiTzT_Nuf6efy5rA9V2CUC4Gxrw0hrtsn4tln36eqFm0jbRzpINELU4q-3v7ziwrRGRv7xe7zlZ5DBnp5iGOFwZ3ztZATYyGw
871
+ response: !ruby/struct:VCR::Response
872
+ status: !ruby/struct:VCR::ResponseStatus
873
+ code: 302
874
+ message: Moved Temporarily
875
+ headers:
876
+ x-frame-options:
877
+ - SAMEORIGIN
878
+ x-content-type-options:
879
+ - nosniff
880
+ location:
881
+ - https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?gsessionid=56aQWqSCxTxPHQ5OXrULYw
882
+ expires:
883
+ - Tue, 08 Nov 2011 20:18:30 GMT
884
+ content-type:
885
+ - text/html; charset=UTF-8
886
+ server:
887
+ - GSE
888
+ x-xss-protection:
889
+ - 1; mode=block
890
+ date:
891
+ - Tue, 08 Nov 2011 20:18:30 GMT
892
+ set-cookie:
893
+ - S=calendar=56aQWqSCxTxPHQ5OXrULYw;Expires=Wed, 07-Nov-2012 20:18:30 GMT;Secure
894
+ cache-control:
895
+ - private, max-age=0
896
+ body: |
897
+ <HTML>
898
+ <HEAD>
899
+ <TITLE>Moved Temporarily</TITLE>
900
+ </HEAD>
901
+ <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
902
+ <H1>Moved Temporarily</H1>
903
+ The document has moved <A HREF="https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?gsessionid=56aQWqSCxTxPHQ5OXrULYw">here</A>.
904
+ </BODY>
905
+ </HTML>
906
+
907
+ http_version: "1.1"
908
+ - !ruby/struct:VCR::HTTPInteraction
909
+ request: !ruby/struct:VCR::Request
910
+ method: :get
911
+ uri: https://www.google.com:443/calendar/feeds/someone%40gmail.com/private/full?gsessionid=56aQWqSCxTxPHQ5OXrULYw
912
+ body:
913
+ headers:
914
+ content-type:
915
+ - application/atom+xml
916
+ authorization:
917
+ - GoogleLogin auth=DQAAAKgAAAC6q1Iiqp9Vw9ZKE8yJ2-JFHZIHhZ5qXE5NZqcjfx96LKQY70khpzCaPgDyl52tIChWJqsiR-DX-TADlD_ayHE2neDBfROc9sbm00FaRipm53anHwSmqC5JUU8FVBe243xyaZ6tIF6WRoiTzT_Nuf6efy5rA9V2CUC4Gxrw0hrtsn4tln36eqFm0jbRzpINELU4q-3v7ziwrRGRv7xe7zlZ5DBnp5iGOFwZ3ztZATYyGw
918
+ response: !ruby/struct:VCR::Response
919
+ status: !ruby/struct:VCR::ResponseStatus
920
+ code: 200
921
+ message: OK
922
+ headers:
923
+ x-frame-options:
924
+ - SAMEORIGIN
925
+ x-content-type-options:
926
+ - nosniff
927
+ last-modified:
928
+ - Tue, 08 Nov 2011 20:18:29 GMT
929
+ expires:
930
+ - Tue, 08 Nov 2011 20:18:30 GMT
931
+ content-type:
932
+ - application/atom+xml; charset=UTF-8
933
+ server:
934
+ - GSE
935
+ x-xss-protection:
936
+ - 1; mode=block
937
+ date:
938
+ - Tue, 08 Nov 2011 20:18:30 GMT
939
+ gdata-version:
940
+ - "1.0"
941
+ set-cookie:
942
+ - S=calendar=8q6mAp8p1ERpEyD6Ut7J8Q;Expires=Wed, 07-Nov-2012 20:18:30 GMT;Secure
943
+ vary:
944
+ - Accept, X-GData-Authorization, GData-Version
945
+ cache-control:
946
+ - private, max-age=0, must-revalidate, no-transform
947
+ body: <?xml version='1.0' encoding='UTF-8'?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:gCal='http://schemas.google.com/gCal/2005'><id>http://www.google.com/calendar/feeds/someone%40gmail.com/private/full</id><updated>2011-11-08T20:18:29.000Z</updated><category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'/><title type='text'>sirical</title><subtitle type='text'>sirical</subtitle><link rel='alternate' type='text/html' href='https://www.google.com/calendar/embed?src=someone@gmail.com'/><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#post' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full'/><link rel='http://schemas.google.com/g/2005#batch' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full/batch'/><link rel='self' type='application/atom+xml' href='https://www.google.com/calendar/feeds/someone%40gmail.com/private/full?max-results=25'/><author><name>steph boo</name><email>someone@gmail.com</email></author><generator version='1.0' uri='http://www.google.com/calendar'>Google Calendar</generator><openSearch:totalResults>0</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><gCal:timezone value='America/Los_Angeles'/><gCal:timesCleaned value='0'/></feed>
948
+ http_version: "1.1"