diff options
author | Geoff Buesing <gbuesing@gmail.com> | 2009-06-07 21:36:09 -0500 |
---|---|---|
committer | Geoff Buesing <gbuesing@gmail.com> | 2009-06-07 21:36:09 -0500 |
commit | 184986067a3294cb178a9dd8955b934ff3feb9a0 (patch) | |
tree | a8855612b2c08ede6ee57bdb41ffa458a62cc842 /activesupport | |
parent | 1d9346428b3f12a42f717a7b1313cd4375d23e23 (diff) | |
download | rails-184986067a3294cb178a9dd8955b934ff3feb9a0.tar.gz rails-184986067a3294cb178a9dd8955b934ff3feb9a0.tar.bz2 rails-184986067a3294cb178a9dd8955b934ff3feb9a0.zip |
Load correct version of TZInfo
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/vendor.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/vendor.rb b/activesupport/lib/active_support/vendor.rb index 2be9b85c89..b6223fe20a 100644 --- a/activesupport/lib/active_support/vendor.rb +++ b/activesupport/lib/active_support/vendor.rb @@ -14,9 +14,9 @@ rescue Gem::LoadError end begin - gem 'tzinfo', '~> 0.3.12' + gem 'tzinfo', '~> 0.3.13' rescue Gem::LoadError - $:.unshift "#{File.dirname(__FILE__)}/vendor/tzinfo-0.3.12" + $:.unshift "#{File.dirname(__FILE__)}/vendor/tzinfo-0.3.13" end # TODO I18n gem has not been released yet |