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

gem_fetcher.rb « cop « rubocop - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a63c760744cf245d35c14bddbff535731a91c55 (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
28
module RuboCop
  module Cop
    # Cop that checks for all gems specified in the Gemfile, and will
    # alert if any gem is to be fetched not from the RubyGems index.
    # This enforcement is done so as to minimize external build
    # dependencies and build times.
    class GemFetcher < RuboCop::Cop::Cop
      MSG = 'Do not use gems from git repositories, only use gems from RubyGems.'

      GIT_KEYS = [:git, :github]

      def on_send(node)
        file_path = node.location.expression.source_buffer.name
        return unless file_path.end_with?("Gemfile")

        func_name = node.children[1]
        return unless func_name == :gem

        node.children.last.each_node(:pair) do |pair|
          key_name = pair.children[0].children[0].to_sym
          if GIT_KEYS.include?(key_name)
            add_offense(node, :selector)
          end
        end
      end
    end
  end
end