QuackatronHQ / Gigarepo

Use Range#cover? instead of Range#include? RB-PR1014
Performance
Major
1 occurrence in this check
Use Range#cover? instead of Range#include?.
64end
65
66# Raises "Use `Range#cover?` instead of `Range#include?`"
67(1..9).include?(5)68
69my_hash = {}
70# Raises "Hash merging can be replaced by hash key assignment"