]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/chef/libraries/compare_versions.rb
Fix new rubocop warnings
[chef.git] / cookbooks / chef / libraries / compare_versions.rb
index 2f5d60baff82b5f435397c50b1efdce8065c4060..cf6ab1ea23c84a3d0b5764b7d311d32889719efd 100644 (file)
@@ -1,11 +1,11 @@
 class Chef
   class Util
     def self.compare_versions(a, b)
-      if a.kind_of?(String)
+      if a.is_a?(String)
         a = a.split(".").map(&:to_i)
       end
 
-      if b.kind_of?(String)
+      if b.is_a?(String)
         b = b.split(".").map(&:to_i)
       end