aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/vendor/tzinfo-0.3.13/lib/tzinfo/definitions/Etc/UTC.rb
blob: 28b2c6a04ce9fccc5e3edbc2a78131b8c4c75635 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'tzinfo/timezone_definition'

module TZInfo
  module Definitions
    module Etc
      module UTC
        include TimezoneDefinition
        
        timezone 'Etc/UTC' do |tz|
          tz.offset :o0, 0, 0, :UTC
          
        end
      end
    end
  end
end