diff options
author | abcang <abcang1015@gmail.com> | 2021-01-07 17:40:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-07 09:40:55 +0100 |
commit | efffdd3778fc960280c7677906ed43dae5a952b0 (patch) | |
tree | afc88388bd8d25a9bc9ecab6fe15adb9394c6921 /lib | |
parent | 066dbe1e699775f59f02298c369225277aac234b (diff) |
Fix rubocop config and warnings (#15503)
* disable NewCops * update TargetRubyVersion * Fix Lint/MissingSuper for ActiveModelSerializers::Model * Fix Lint/MissingSuper for feed * Fix Lint/FloatComparison * Do not use instance variables
Diffstat (limited to 'lib')
-rw-r--r-- | lib/paperclip/color_extractor.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/paperclip/color_extractor.rb b/lib/paperclip/color_extractor.rb index f850dc067..a70a3d21f 100644 --- a/lib/paperclip/color_extractor.rb +++ b/lib/paperclip/color_extractor.rb @@ -142,7 +142,7 @@ module Paperclip g = 0.0 b = 0.0 - if s == 0.0 + if s.zero? r = l.to_f g = l.to_f b = l.to_f # achromatic |