debian-mirror-gitlab/rubocop/cop/migration/add_timestamps.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
676 B
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
require_relative '../../migration_helpers'
module RuboCop
module Cop
module Migration
# Cop that checks if 'add_timestamps' method is called with timezone information.
class AddTimestamps < RuboCop::Cop::Cop
include MigrationHelpers
2021-04-29 21:17:54 +05:30
MSG = 'Do not use `add_timestamps`, use `add_timestamps_with_timezone` instead'
2017-09-10 17:25:29 +05:30
# Check methods.
def on_send(node)
return unless in_migration?(node)
2018-03-17 18:26:18 +05:30
add_offense(node, location: :selector) if method_name(node) == :add_timestamps
2017-09-10 17:25:29 +05:30
end
def method_name(node)
node.children[1]
end
end
end
end
end