diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-29 14:38:45 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-01-29 14:38:45 -0200 |
commit | b344986bc3d94ca7821fc5e0eef1874882ac6cbb (patch) | |
tree | de176d78d739465a5c9598036715b37bfb70c413 /activesupport | |
parent | 37f2defa9922e915ac021f303d1b0e3bcbafcd79 (diff) | |
parent | abce1aa289dca3afef2a2f48567bc18d6c623d61 (diff) | |
download | rails-b344986bc3d94ca7821fc5e0eef1874882ac6cbb.tar.gz rails-b344986bc3d94ca7821fc5e0eef1874882ac6cbb.tar.bz2 rails-b344986bc3d94ca7821fc5e0eef1874882ac6cbb.zip |
Merge pull request #18718 from jgeiger/fix_ruby_2_2_comparable_warnings
Fix ruby 2.2 comparable warnings
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/values/time_zone.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/values/time_zone.rb b/activesupport/lib/active_support/values/time_zone.rb index 01aea0984b..37979fa3ee 100644 --- a/activesupport/lib/active_support/values/time_zone.rb +++ b/activesupport/lib/active_support/values/time_zone.rb @@ -223,6 +223,7 @@ module ActiveSupport # Compare this time zone to the parameter. The two are compared first on # their offsets, and then by name. def <=>(zone) + return unless zone.respond_to?(:utc_offset) && zone.respond_to?(:name) result = (utc_offset <=> zone.utc_offset) result = (name <=> zone.name) if result == 0 result |