primes_table.gemspec
required_ruby_version
(2.7, declared in primes_table.gemspec) and TargetRubyVersion
(2.1, declared in .rubocop.yml) should be equal. Wontfix
Wontfix
spec.required_ruby_version = '>= 2.7.1'
- Read upRead up
- Exclude checks
Checks that required_ruby_version
of gemspec and TargetRubyVersion
of .rubocop.yml are equal.
Thereby, RuboCop to perform static analysis working on the version
required by gemspec.
Example:
# When `TargetRubyVersion` of .rubocop.yml is `2.3`.
# bad
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.2.0'
end
# bad
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.4.0'
end
# good
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.3.0'
end
# good
Gem::Specification.new do |spec|
spec.required_ruby_version = '>= 2.3'
end
# good
Gem::Specification.new do |spec|
spec.required_ruby_version = ['>= 2.3.0', '< 2.5.0']
end
Line is too long. [112/80] Open
Open
spec.description = 'Command line tool for printing out a multiplication table of the first N prime numbers.'
- Exclude checks
Line is too long. [88/80] Open
Open
spec.summary = 'Prints out a multiplication table of the first N prime numbers.'
- Exclude checks