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

add_timestamps.rb « migration « cop « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d16e8b1f45bac65f094af89c1d59e52a1cff6ff8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

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

        MSG = 'Do not use `add_timestamps`, use `add_timestamps_with_timezone` instead'.freeze

        # Check methods.
        def on_send(node)
          return unless in_migration?(node)

          add_offense(node, location: :selector) if method_name(node) == :add_timestamps
        end

        def method_name(node)
          node.children[1]
        end
      end
    end
  end
end