~michaelforrest/use-case-mapper/trunk

« back to all changes in this revision

Viewing changes to vendor/rails/activesupport/lib/active_support/vendor/tzinfo-0.3.12/tzinfo/definitions/Pacific/Midway.rb

  • Committer: Michael Forrest
  • Date: 2010-10-15 16:28:50 UTC
  • Revision ID: michael.forrest@canonical.com-20101015162850-tj2vchanv0kr0dun
refrozeĀ gems

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require 'tzinfo/timezone_definition'
 
2
 
 
3
module TZInfo
 
4
  module Definitions
 
5
    module Pacific
 
6
      module Midway
 
7
        include TimezoneDefinition
 
8
        
 
9
        timezone 'Pacific/Midway' do |tz|
 
10
          tz.offset :o0, -42568, 0, :LMT
 
11
          tz.offset :o1, -39600, 0, :NST
 
12
          tz.offset :o2, -39600, 3600, :NDT
 
13
          tz.offset :o3, -39600, 0, :BST
 
14
          tz.offset :o4, -39600, 0, :SST
 
15
          
 
16
          tz.transition 1901, 1, :o1, 26086168721, 10800
 
17
          tz.transition 1956, 6, :o2, 58455071, 24
 
18
          tz.transition 1956, 9, :o1, 29228627, 12
 
19
          tz.transition 1967, 4, :o3, 58549967, 24
 
20
          tz.transition 1983, 11, :o4, 439038000
 
21
        end
 
22
      end
 
23
    end
 
24
  end
 
25
end