diff --git a/Gemfile.lock b/Gemfile.lock index e64e16c7..aff5deb4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: rubocop-shopify (1.0.2) - rubocop (>= 0.82, < 0.86) + rubocop (~> 0.85.0) GEM remote: https://rubygems.org/ diff --git a/rubocop-shopify.gemspec b/rubocop-shopify.gemspec index 14f3f2d6..d0aede8f 100644 --- a/rubocop-shopify.gemspec +++ b/rubocop-shopify.gemspec @@ -21,5 +21,5 @@ Gem::Specification.new do |s| "allowed_push_host" => "https://rubygems.org", } - s.add_dependency("rubocop", ">= 0.82", "< 0.86") + s.add_dependency("rubocop", "~> 0.85.0") end diff --git a/rubocop.yml b/rubocop.yml index 485f7e8d..1922ae1c 100644 --- a/rubocop.yml +++ b/rubocop.yml @@ -1015,3 +1015,6 @@ Style/ModuleFunction: Lint/OrderedMagicComments: Enabled: true + +Lint/DeprecatedOpenSSLConstant: + Enabled: true