~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/America/Bogota.rb

  • Committer: Richard Lee (Canonical)
  • Date: 2010-10-15 15:17:58 UTC
  • mfrom: (190.1.3 use-case-mapper)
  • Revision ID: richard.lee@canonical.com-20101015151758-wcvmfxrexsongf9d
Merge

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 America
6
 
      module Bogota
7
 
        include TimezoneDefinition
8
 
        
9
 
        timezone 'America/Bogota' do |tz|
10
 
          tz.offset :o0, -17780, 0, :LMT
11
 
          tz.offset :o1, -17780, 0, :BMT
12
 
          tz.offset :o2, -18000, 0, :COT
13
 
          tz.offset :o3, -18000, 3600, :COST
14
 
          
15
 
          tz.transition 1884, 3, :o1, 10407954409, 4320
16
 
          tz.transition 1914, 11, :o2, 10456385929, 4320
17
 
          tz.transition 1992, 5, :o3, 704869200
18
 
          tz.transition 1993, 4, :o2, 733896000
19
 
        end
20
 
      end
21
 
    end
22
 
  end
23
 
end