aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/vendor/tzinfo-0.3.16/lib/tzinfo/definitions/Atlantic/South_Georgia.rb
blob: 6a4cbafb9f4ad811b92ab34d7058311670d739b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'tzinfo/timezone_definition'

module TZInfo
  module Definitions
    module Atlantic
      module South_Georgia
        include TimezoneDefinition
        
        timezone 'Atlantic/South_Georgia' do |tz|
          tz.offset :o0, -8768, 0, :LMT
          tz.offset :o1, -7200, 0, :GST
          
          tz.transition 1890, 1, :o1, 1627673806, 675
        end
      end
    end
  end
end