Sha256: fdffe10549e76393cb8bdc7d947ac88f75bf2cd1065538d32a9500730a2bf614

Contents?: true

Size: 1.7 KB

Versions: 3

Compression:

Stored size: 1.7 KB

Contents

= 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

Copyright (c) 2010 Steve Zich. See LICENSE.txt for further details.

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
google_calendar-0.1.2 README.rdoc
google_calendar-0.1.1 README.rdoc
google_calendar-0.1.0 README.rdoc