A fast lightweight and minimalist wrapper around the google calendar api.
[sudo] gem install 'google_calendar'
Note: Google requests that you set the name of your application so they can better monitor the use of their services.
require 'rubygems' require 'google_calendar' cal = Google::Calendar.new(:username => 'some.person@gmail.com', :password => 'super-secret', :app_name => 'mycompany.com-googlecalendar-integration') event = cal.create_event do |e| e.title = 'A Cool Event' e.start_time = Time.now e.end_time = Time.now + (60 * 60) # seconds * min end puts event event = cal.find_or_create_event_by_id(event.id) do |e| e.title = 'An Updated Cool Event' e.end_time = Time.now + (60 * 60 * 2) # seconds * min * hours end puts event # All events puts cal.events # Query events puts cal.find_events('my search string')
Note: This is not a complete implementation of the calendar api, it just includes the features I needed to support our internal calendar integration.
-
Check out the latest master to make sure the feature hasn’t been implemented or the bug hasn’t been fixed yet
-
Check out the issue tracker to make sure someone already hasn’t requested it and/or contributed it
-
Fork the project
-
Start a feature/bugfix branch
-
Commit and push until you are happy with your contribution
-
Make sure to add tests for it. This is important so I don’t break it in a future version unintentionally.
-
Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
Copyright © 2010 Steve Zich. See LICENSE.txt for further details.