diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2010-06-01 04:12:04 -0300 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2010-06-01 09:16:19 +0200 |
commit | 0bed93be25e6bcae2b1a74cec70413118be66736 (patch) | |
tree | cf572b3c200943538162242cda4c506995bfe728 /activesupport/lib/active_support/values | |
parent | ea037ff55791a33d24773efd380b734f733c2815 (diff) | |
download | rails-0bed93be25e6bcae2b1a74cec70413118be66736.tar.gz rails-0bed93be25e6bcae2b1a74cec70413118be66736.tar.bz2 rails-0bed93be25e6bcae2b1a74cec70413118be66736.zip |
Unforce tzinfo from AS
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activesupport/lib/active_support/values')
-rw-r--r-- | activesupport/lib/active_support/values/time_zone.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/values/time_zone.rb b/activesupport/lib/active_support/values/time_zone.rb index 2ac5134911..67b37785f5 100644 --- a/activesupport/lib/active_support/values/time_zone.rb +++ b/activesupport/lib/active_support/values/time_zone.rb @@ -1,5 +1,11 @@ require 'active_support/core_ext/object/blank' require 'active_support/core_ext/object/try' +begin + require 'tzinfo' +rescue LoadError => e + $stderr.puts "You don't have tzinfo installed in your application. Please add it to your Gemfile and run bundle install" + raise e +end # The TimeZone class serves as a wrapper around TZInfo::Timezone instances. It allows us to do the following: # @@ -313,7 +319,7 @@ module ActiveSupport # TODO: Preload instead of lazy load for thread safety def self.find_tzinfo(name) - require 'tzinfo' unless defined?(::TZInfo) + require 'active_support/tzinfo' unless defined?(::TZInfo) ::TZInfo::TimezoneProxy.new(MAPPING[name] || name) end |