Class: RuboCop::Cop::Gemspec::DuplicatedAssignment

Inherits:
Base
  • Object
show all
Includes:
RuboCop::Cop::GemspecHelp, RangeHelp
Defined in:
lib/rubocop/cop/gemspec/duplicated_assignment.rb

Overview

An attribute assignment method calls should be listed only once in a gemspec.

Assigning to an attribute with the same name using ‘spec.foo =` or `spec.attribute#[]=` will be an unintended usage. On the other hand, duplication of methods such # as `spec.requirements`, `spec.add_runtime_dependency`, and others are permitted because it is the intended use of appending values.

Examples:

# bad
Gem::Specification.new do |spec|
  spec.name = 'rubocop'
  spec.name = 'rubocop2'
end

# good
Gem::Specification.new do |spec|
  spec.name = 'rubocop'
end

# good
Gem::Specification.new do |spec|
  spec.requirements << 'libmagick, v6.0'
  spec.requirements << 'A good graphics card'
end

# good
Gem::Specification.new do |spec|
  spec.add_dependency('parallel', '~> 1.10')
  spec.add_dependency('parser', '>= 2.3.3.1', '< 3.0')
end

# bad
Gem::Specification.new do |spec|
  spec.["key"] = "value"
  spec.["key"] = "value"
end

# good
Gem::Specification.new do |spec|
  spec.["key"] = "value"
end

Constant Summary collapse

MSG =
'`%<assignment>s` method calls already given on line ' \
'%<line_of_first_occurrence>d of the gemspec.'

Constants included from RangeHelp

RangeHelp::BYTE_ORDER_MARK, RangeHelp::NOT_GIVEN

Constants inherited from Base

Base::RESTRICT_ON_SEND

Instance Attribute Summary

Attributes inherited from Base

#config, #processed_source

Instance Method Summary collapse

Methods included from RuboCop::Cop::GemspecHelp

#gem_specification, #gem_specification?

Methods inherited from Base

#active_support_extensions_enabled?, #add_global_offense, #add_offense, #always_autocorrect?, autocorrect_incompatible_with, badge, #begin_investigation, #callbacks_needed, callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #contextual_autocorrect?, #cop_config, cop_name, #cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, #inspect, joining_forces, lint?, match?, #message, #offenses, #on_investigation_end, #on_other_file, #parse, #parser_engine, #ready, #relevant_file?, requires_gem, #string_literals_frozen_by_default?, support_autocorrect?, support_multiple_source?, #target_gem_version, #target_rails_version, #target_ruby_version

Methods included from ExcludeLimit

#exclude_limit

Methods included from AutocorrectLogic

#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #autocorrect_with_disable_uncorrectable?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?

Methods included from IgnoredNode

#ignore_node, #ignored_node?, #part_of_ignored_node?

Methods included from Util

silence_warnings

Constructor Details

This class inherits a constructor from RuboCop::Cop::Base

Instance Method Details

#assignment_method_declarations(node) ⇒ Object



58
59
60
61
# File 'lib/rubocop/cop/gemspec/duplicated_assignment.rb', line 58

def_node_search :assignment_method_declarations, "(send\n  (lvar #match_block_variable_name?) _ ...)\n"

#indexed_assignment_method_declarations(node) ⇒ Object



64
65
66
67
68
69
70
71
# File 'lib/rubocop/cop/gemspec/duplicated_assignment.rb', line 64

def_node_search :indexed_assignment_method_declarations, "(send\n  (send (lvar #match_block_variable_name?) _)\n  :[]=\n  literal?\n  _\n)\n"

#on_new_investigationObject



73
74
75
76
77
78
# File 'lib/rubocop/cop/gemspec/duplicated_assignment.rb', line 73

def on_new_investigation
  return if processed_source.blank?

  process_assignment_method_nodes
  process_indexed_assignment_method_nodes
end