Sha256: 40bfbd4b61ddd83e2d05d54a08539099eca8a45407b4f9a95d3aee9b6c1ed153

Contents?: true

Size: 1.34 KB

Versions: 5

Compression:

Stored size: 1.34 KB

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Gemspec
      # This cop checks that `date =` is not used in gemspec file.
      # It is set automatically when the gem is packaged.
      #
      # @example
      #
      #   # bad
      #   Gem::Specification.new do |spec|
      #     spec.name = 'your_cool_gem_name'
      #     spec.date = Time.now.strftime('%Y-%m-%d')
      #   end
      #
      #   # good
      #   Gem::Specification.new do |spec|
      #     spec.name = 'your_cool_gem_name'
      #   end
      #
      class DateAssignment < Base
        include RangeHelp
        include GemspecHelp
        extend AutoCorrector

        MSG = 'Do not use `date =` in gemspec, it is set automatically when the gem is packaged.'

        def on_block(block_node)
          return unless gem_specification?(block_node)

          block_parameter = block_node.arguments.first.source

          date_assignment = block_node.descendants.detect do |node|
            node.send_type? && node.receiver&.source == block_parameter && node.method?(:date=)
          end

          return unless date_assignment

          add_offense(date_assignment) do |corrector|
            range = range_by_whole_lines(date_assignment.source_range, include_final_newline: true)

            corrector.remove(range)
          end
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubocop-1.29.1 lib/rubocop/cop/gemspec/date_assignment.rb
rubocop-1.29.0 lib/rubocop/cop/gemspec/date_assignment.rb
rubocop-1.28.2 lib/rubocop/cop/gemspec/date_assignment.rb
rubocop-1.28.1 lib/rubocop/cop/gemspec/date_assignment.rb
rubocop-1.28.0 lib/rubocop/cop/gemspec/date_assignment.rb