Google iCalendar

gem rspec coverage maintainability

Google Calendar extension for iCalendar

Installation

Add this line to your application's Gemfile:

gem 'icalendar-google'

And then execute:

$ bundle

Or install it yourself as:

$ gem install icalendar-google

Usage

require "icalendar/google"

google_id  = "[email protected]"
public_url = "https://calendar.google.com/calendar/ical/#{CGI.escape google_id}/public/basic.ics"

gcal = Icalendar::Calendar.from_google_id(google_id).first
# or
gcal = Icalendar::Calendar.from_url(public_url).first

gcal.google_id
# => "[email protected]"

gcal.webcal_url
# => "webcal://calendar.google.com/calendar/ical/ht3jlfaac5lfd6263ulfh4tql8%40group.calendar.google.com/public/basic.ics"

gcal.event_url(gcal.events.last)
# => "https://calendar.google.com/calendar/event?eid=bW9vbnBoYXNlKzE1MTY4MzI0MDAwMDAgaHQzamxmYWFjNWxmZDYyNjN1bGZoNHRxbDhAZw"

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/amancevice/icalendar-google.

License

The gem is available as open source under the terms of the MIT License.