<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,11 @@
 
 = rufus-google
 
-snippets of Ruby for interacting with Google stuff.
+rufus-google should probably be named &quot;rufus-gcal&quot; for now, as only google calendar stuff is implemented.
+
+This gem leverages 'atom-tools' to play with Google Data APIs.
+
+The only authentication mechanism implemented for now is &quot;ClientLogin&quot;.
 
 
 == getting it
@@ -15,13 +19,36 @@ http://rubyforge.org/frs/?group_id=4812
 
 == usage
 
+Using Google Calendar :
+
+    require 'rubygems'
+    require 'rufus/gcal'
+
+    calendars = Rufus::Google::Calendar.get_calendars(
+      :account =&gt; ENV['GUSER'], :password =&gt; ENV['GPASS'])
+
+    #calendars.values.each { |c| p [ c.name, c.href ] }
+
+    cal = calendars['gwork']
+
+    event_id = cal.post_quick!('Tennis with John November 13 3pm-4:30pm')
+
+    cal.events(:q =&gt; 'tennis').each do |e|
+      puts
+      puts e.to_s
+    end
+
+    cal.delete!(event_id)
+
+    puts &quot;#{cal.events(:q =&gt; 'tennis').size} tennis events&quot;
+
 
-look at what's in http://github.com/jmettraux/rufus-google/tree/master/test for now.
+Other Google APIs will be covered later, if the need arise.
 
 
 == dependencies
 
-the 'rufus-verbs' gem.
+the 'rufus-verbs' and the 'atom-tools' gems.
 
 
 == mailing list</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -33,7 +33,7 @@ spec = Gem::Specification.new do |s|
 
   [ 'rufus-verbs', 'atom-tools' ].each do |d|
     s.requirements &lt;&lt; d
-    s.add_dependency d
+    s.add_dependency(d)
   end
 
   files = FileList[ &quot;{bin,lib,test}/**/*&quot; ]</diff>
      <filename>Rakefile</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>e9abbe12fbedeb8345f413dff3ab1aadbe860ef4</id>
    </parent>
  </parents>
  <author>
    <name>John Mettraux</name>
    <email>jmettraux@gmail.com</email>
  </author>
  <url>http://github.com/jmettraux/rufus-google/commit/8960c35302c8b0ea95502fc3a39f0ecf119be39f</url>
  <id>8960c35302c8b0ea95502fc3a39f0ecf119be39f</id>
  <committed-date>2008-11-12T05:29:13-08:00</committed-date>
  <authored-date>2008-11-12T05:29:13-08:00</authored-date>
  <message>wrote 'usage' in README.txt</message>
  <tree>544f8538ac42670dc2e118055b9f6cb07d1f8d47</tree>
  <committer>
    <name>John Mettraux</name>
    <email>jmettraux@gmail.com</email>
  </committer>
</commit>
