summaryrefslogtreecommitdiff
path: root/rubocop/cop/migration/timestamps.rb
blob: 71a9420cc3bca8574d031d1baa13444c43d4dce4 (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
require_relative '../../migration_helpers'

module RuboCop
  module Cop
    module Migration
      # Cop that checks if 'timestamps' method is called with timezone information.
      class Timestamps < RuboCop::Cop::Cop
        include MigrationHelpers

        MSG = 'Do not use `timestamps`, use `timestamps_with_timezone` instead'.freeze

        # Check methods in table creation.
        def on_def(node)
          return unless in_migration?(node)

          node.each_descendant(:send) do |send_node|
            add_offense(send_node, :selector) if method_name(send_node) == :timestamps
          end
        end

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