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/add_timestamps.rb')
-rw-r--r--rubocop/cop/migration/add_timestamps.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/rubocop/cop/migration/add_timestamps.rb b/rubocop/cop/migration/add_timestamps.rb
index 01d3f01ef4f..8b09d730cbc 100644
--- a/rubocop/cop/migration/add_timestamps.rb
+++ b/rubocop/cop/migration/add_timestamps.rb
@@ -6,7 +6,7 @@ module RuboCop
module Cop
module Migration
# Cop that checks if 'add_timestamps' method is called with timezone information.
- class AddTimestamps < RuboCop::Cop::Cop
+ class AddTimestamps < RuboCop::Cop::Base
include MigrationHelpers
MSG = 'Do not use `add_timestamps`, use `add_timestamps_with_timezone` instead'
@@ -15,7 +15,7 @@ module RuboCop
def on_send(node)
return unless in_migration?(node)
- add_offense(node, location: :selector) if method_name(node) == :add_timestamps
+ add_offense(node.loc.selector) if method_name(node) == :add_timestamps
end
def method_name(node)