class Icalendar::Values::Date

Public Instance Methods

google_calendar_representation() click to toggle source
# File lib/synchrograph/icalendar_monkey_patches/dates_and_datetimes.rb, line 7
def google_calendar_representation
  {
    'date' => self.strftime('%F'),
    'timeZone' => tzinfo.name
  }
end