brn / google_calendar

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Google Calendar

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

<img src=“https://travis-ci.org/northworld/google_calendar.png?branch=master” alt=“Build Status” /> <img src=“https://gemnasium.com/northworld/google_calendar.png” alt=“Dependency Status” /> <img src=“https://codeclimate.com/github/northworld/google_calendar.png” />

Install

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

Usage

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[0]

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[0]

# 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 we 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

License:MIT License