File: active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Africa/Johannesburg.rb

Overview
Module Structure
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: TZInfo#3
  module: Definitions#4
  module: Africa#5
  module: Johannesburg#6
includes
  TimezoneDefinition ( TZInfo )

Code

   1  require 'tzinfo/timezone_definition'
   2 
   3  module TZInfo
   4    module Definitions
   5      module Africa
   6        module Johannesburg
   7          include TimezoneDefinition
   8          
   9          timezone 'Africa/Johannesburg' do |tz|
  10            tz.offset :o0, 6720, 0, :LMT
  11            tz.offset :o1, 5400, 0, :SAST
  12            tz.offset :o2, 7200, 0, :SAST
  13            tz.offset :o3, 7200, 3600, :SAST
  14            
  15            tz.transition 1892, 2, :o1, 108546139, 45
  16            tz.transition 1903, 2, :o2, 38658791, 16
  17            tz.transition 1942, 9, :o3, 4861245, 2
  18            tz.transition 1943, 3, :o2, 58339307, 24
  19            tz.transition 1943, 9, :o3, 4861973, 2
  20            tz.transition 1944, 3, :o2, 58348043, 24
  21          end
  22        end
  23      end
  24    end
  25  end