Skip to content

patricksrobertson/google_calendar

 
 

Repository files navigation

Google Calendar

A fast lightweight and minimalist wrapper around the google calendar api.

Install

[sudo] gem install 'google_calendar'

Note: Make sure to customize the APP_NAME constant in the Connection class.

Usage

require 'rubygems'
require 'google_calendar'

cal = Google::Calendar.new(:username => 'some.person@gmail.com', :password => 'super-secret')

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.

Contributing to google_calendar

  • 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.

About

A minimal wrapper around the google calendar API, which uses nokogiri for fast parsing

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%