Sha256: 6f73f05621ebb32bb05156b62116e3dcd299631092d0ea42de6fc91aa39930a3

Contents?: true

Size: 609 Bytes

Versions: 60

Compression:

Stored size: 609 Bytes

Contents

module RiCal
  class Component
    class Timezone
      #- ©2009 Rick DeNatale, All rights reserved. Refer to the file README.txt for the license
      #
      # A StandardPeriod is a TimezonePeriod during which daylight saving time is *not* in effect
      class StandardPeriod < TimezonePeriod #:nodoc: all

        def self.entity_name #:nodoc:
          "STANDARD"
        end
        
        def dst?
          false
        end
        
        def ambiguous_local?(time)
          [time.year, time.month, time.day] == [dtstart.year, dtstart.month, dtstart.day]
        end
      end
    end
  end
end

Version data entries

60 entries across 60 versions & 8 rubygems

Version Path
demingfactor-ri_cal-0.10.0 lib/ri_cal/component/timezone/standard_period.rb
demingfactor-ri_cal-0.9.0 lib/ri_cal/component/timezone/standard_period.rb
ebeigarts-ri_cal-0.8.1 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.10 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.11 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.3 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.4 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.5 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.6 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.7 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.8 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.0.9 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.5.0 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.5.1 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.5.2 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.5.3 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.6.0 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.6.1 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.6.2 lib/ri_cal/component/timezone/standard_period.rb
rubyredrick-ri_cal-0.6.3 lib/ri_cal/component/timezone/standard_period.rb