Skip to content

Commit

Permalink
Update bundled TZInfo to v0.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
gbuesing committed Jun 8, 2009
1 parent 6a3f8ae commit 04eb2b7
Show file tree
Hide file tree
Showing 140 changed files with 20 additions and 21 deletions.
2 changes: 2 additions & 0 deletions activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*Edge*

* Update bundled TZInfo to v0.3.13 [Geoff Buesing]

* Allow MemCacheStore to be initialized with a MemCache-like object instead of addresses and options [Bryan Helmkamp]

* Change spelling of Kyev timezone to Kyiv #2613 [Alexander Dymo]
Expand Down

This file was deleted.

Expand Up @@ -33,6 +33,8 @@ module Casablanca
tz.transition 1985, 12, :o1, 504918000
tz.transition 2008, 6, :o2, 1212278400
tz.transition 2008, 8, :o1, 1220223600
tz.transition 2009, 6, :o2, 1243814400
tz.transition 2009, 8, :o1, 1250809200
end
end
end
Expand Down
Expand Up @@ -23,6 +23,8 @@ module Karachi
tz.transition 2002, 10, :o4, 1033840860
tz.transition 2008, 5, :o5, 1212260400
tz.transition 2008, 10, :o4, 1225476000
tz.transition 2009, 4, :o5, 1239735600
tz.transition 2009, 10, :o4, 1257012000
end
end
end
Expand Down
@@ -0,0 +1,13 @@
require 'tzinfo/timezone_definition'

module TZInfo
module Definitions
module Asia
module Katmandu
include TimezoneDefinition

linked_timezone 'Asia/Katmandu', 'Asia/Kathmandu'
end
end
end
end
Expand Up @@ -82,7 +82,7 @@ def self.get(identifier)
identifier = identifier.gsub(/-/, '__m__').gsub(/\+/, '__p__')
begin
# Use a temporary variable to avoid an rdoc warning
file = "tzinfo/definitions/#{identifier}"
file = "tzinfo/definitions/#{identifier}".untaint
require file

m = Definitions
Expand Down

0 comments on commit 04eb2b7

Please sign in to comment.