diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-06-14 15:18:55 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-06-14 15:18:55 -0500 |
commit | b415538b5dbf017d20226411a9d25a149f87eb51 (patch) | |
tree | 19dc7808f4392dd95c923eb5127c5223c8b45954 /activesupport/Rakefile | |
parent | ba0f38f89e8473490270957849d7d5b06f6ee65b (diff) | |
download | rails-b415538b5dbf017d20226411a9d25a149f87eb51.tar.gz rails-b415538b5dbf017d20226411a9d25a149f87eb51.tar.bz2 rails-b415538b5dbf017d20226411a9d25a149f87eb51.zip |
Updated bundled TZInfo gem to version 0.3.9 for Ruby 1.9 compat
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r-- | activesupport/Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile index 38ca03b658..e51bf08f8d 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -119,7 +119,7 @@ namespace :tzinfo do task :copy_definitions => :unpack_gem do definitions_path = "#{destination_path}/tzinfo/definitions/" mkdir_p definitions_path - TimeZone::MAPPING.values.each do |zone| + ActiveSupport::TimeZone::MAPPING.values.each do |zone| subdir = nil if /\// === zone subdir = zone.sub(/\w+$/, '') |