Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'rubocop/cop/migration/with_lock_retries_with_change.rb')
-rw-r--r--rubocop/cop/migration/with_lock_retries_with_change.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/rubocop/cop/migration/with_lock_retries_with_change.rb b/rubocop/cop/migration/with_lock_retries_with_change.rb
index 9d11edcb6a1..59dbd6f22d2 100644
--- a/rubocop/cop/migration/with_lock_retries_with_change.rb
+++ b/rubocop/cop/migration/with_lock_retries_with_change.rb
@@ -6,7 +6,7 @@ module RuboCop
module Cop
module Migration
# Cop that prevents usage of `with_lock_retries` within the `change` method.
- class WithLockRetriesWithChange < RuboCop::Cop::Cop
+ class WithLockRetriesWithChange < RuboCop::Cop::Base
include MigrationHelpers
MSG = '`with_lock_retries` cannot be used within `change` so you must manually define ' \
@@ -17,13 +17,9 @@ module RuboCop
return unless node.children[1] == :with_lock_retries
node.each_ancestor(:def) do |def_node|
- add_offense(def_node, location: :name) if method_name(def_node) == :change
+ add_offense(def_node.loc.name) if def_node.method_name == :change
end
end
-
- def method_name(node)
- node.children.first
- end
end
end
end