~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/Caracas.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 America
 
6
      module Caracas
 
7
        include TimezoneDefinition
 
8
        
 
9
        timezone 'America/Caracas' do |tz|
 
10
          tz.offset :o0, -16064, 0, :LMT
 
11
          tz.offset :o1, -16060, 0, :CMT
 
12
          tz.offset :o2, -16200, 0, :VET
 
13
          tz.offset :o3, -14400, 0, :VET
 
14
          
 
15
          tz.transition 1890, 1, :o1, 1627673863, 675
 
16
          tz.transition 1912, 2, :o2, 10452001043, 4320
 
17
          tz.transition 1965, 1, :o3, 39020187, 16
 
18
          tz.transition 2007, 12, :o2, 1197183600
 
19
        end
 
20
      end
 
21
    end
 
22
  end
 
23
end