# File lib/icalendar/tzinfo.rb, line 46
        def ical_timezone(date)
            period = period_for_local(date)
            timezone = Icalendar::Timezone.new
            timezone.timezone_id = identifier
            timezone.add(period.daylight)
            timezone.add(period.standard)
            return timezone
        end