Sha256: 439afa9cc04605aaea56f9aa15695a57316469bb60e6814aa24f7859eaf0011c
Contents?: true
Size: 405 Bytes
Versions: 3
Compression:
Stored size: 405 Bytes
Contents
module Goauth2 class Client def all_calendars(params = {}) _get_jsonc('https://www.google.com/calendar/feeds/default/allcalendars/full', params) end def own_calendars(params = {}) _get_jsonc('https://www.google.com/calendar/feeds/default/owncalendars/full', params) end def events(event_feed, params = {}) _get_jsonc(event_feed, params) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
goauth2-0.0.7 | lib/goauth2/calendar.rb |
goauth2-0.0.6 | lib/goauth2/calendar.rb |
goauth2-0.0.5 | lib/goauth2/calendar.rb |