Module: GCal4Ruby

Defined in:
lib/gcal4ruby/base.rb,
lib/gcal4ruby/event.rb,
lib/gcal4ruby/service.rb,
lib/gcal4ruby/calendar.rb,
lib/gcal4ruby/recurrence.rb

Overview

Usage:

Defined Under Namespace

Classes: AuthenticationFailed, Base, Calendar, CalendarNotEditable, CalendarSaveFailed, Event, EventSaveFailed, HTTPDeleteFailed, HTTPGetFailed, HTTPPostFailed, HTTPPutFailed, InvalidService, NotAuthenticated, ProxyInfo, QueryParameterError, Recurrence, RecurrenceValueError, Service

Constant Summary collapse

CALENDAR_XML =
"<entry xmlns='http://www.w3.org/2005/Atom' 
     xmlns:gd='http://schemas.google.com/g/2005' 
     xmlns:gCal='http://schemas.google.com/gCal/2005'>
<title type='text'></title>
<summary type='text'></summary>
<gCal:timezone value=''></gCal:timezone>
<gCal:hidden value=''></gCal:hidden>
<gCal:color value=''></gCal:color>
<gd:where rel='' label='' valueString=''></gd:where>
</entry>"
ACL_XML =
"<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gAcl='http://schemas.google.com/acl/2007'>
  <category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/acl/2007#accessRule'/>
   <gAcl:scope type='default'></gAcl:scope>
   <gAcl:role value=''></gAcl:role>
</entry>"
EVENT_XML =
"<entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005'>
<category scheme='http://schemas.google.com/g/2005#kind' term='http://schemas.google.com/g/2005#event'></category>
<title type='text'></title>
<content type='text'></content>
<gd:transparency value=''></gd:transparency>
<gd:eventStatus value=''></gd:eventStatus>
<gd:where valueString=''></gd:where>
<gd:when startTime='' endTime=''></gd:when>
</entry>
"