Sha256: 3eaf99bb9fdcaff48f1c3f18b8aa5041c499d19b2f0ad975b7edb89b2292591b

Contents?: true

Size: 1.11 KB

Versions: 10

Compression:

Stored size: 1.11 KB

Contents

module Gitlab
  module Styles
    module Rubocop
      module Cop
        # This cop prevents usage of the `git` and `github` arguments to `gem` in a
        # `Gemfile` in order to avoid additional points of failure beyond
        # rubygems.org.
        class GemFetcher < RuboCop::Cop::Cop
          MSG = 'Do not use gems from git repositories, only use gems from RubyGems.'.freeze

          GIT_KEYS = [:git, :github].freeze

          def on_send(node)
            return unless gemfile?(node)

            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, location: pair.source_range, message: MSG)
              end
            end
          end

          private

          def gemfile?(node)
            node
              .location
              .expression
              .source_buffer
              .name
              .end_with?("Gemfile")
          end
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
gitlab-styles-2.5.2 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.5.1 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.5.0 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.4.1 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.4.0 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.3.2 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.3.1 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.3.0 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.2.0 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb
gitlab-styles-2.1.0 lib/gitlab/styles/rubocop/cop/gem_fetcher.rb