Class: RuboCop::Cop::Style::RandomWithOffset
- Extended by:
- AutoCorrector
- Defined in:
- lib/rubocop/cop/style/random_with_offset.rb
Overview
This cop checks for the use of randomly generated numbers, added/subtracted with integer literals, as well as those with Integer#succ and Integer#pred methods. Prefer using ranges instead, as it clearly states the intentions.
Constant Summary collapse
- MSG =
'Prefer ranges when generating random numbers instead of ' \ 'integers with offsets.'
- RESTRICT_ON_SEND =
%i[+ - succ pred next].freeze
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
- #integer_op_rand?(node) ⇒ Object
- #on_send(node) ⇒ Object
- #rand_modified?(node) ⇒ Object
- #rand_op_integer?(node) ⇒ Object
Methods included from AutoCorrector
Methods inherited from Base
#add_global_offense, #add_offense, autocorrect_incompatible_with, badge, #callbacks_needed, callbacks_needed, #config_to_allow_offenses, #config_to_allow_offenses=, #cop_config, #cop_name, cop_name, department, documentation_url, exclude_from_registry, #excluded_file?, #external_dependency_checksum, inherited, #initialize, joining_forces, lint?, match?, #message, #offenses, #on_investigation_end, #on_new_investigation, #on_other_file, #ready, #relevant_file?, support_autocorrect?, support_multiple_source?, #target_rails_version, #target_ruby_version
Methods included from ExcludeLimit
Methods included from AutocorrectLogic
#autocorrect?, #autocorrect_enabled?, #autocorrect_requested?, #correctable?, #disable_uncorrectable?, #safe_autocorrect?
Methods included from IgnoredNode
#ignore_node, #ignored_node?, #part_of_ignored_node?
Methods included from Util
Constructor Details
This class inherits a constructor from RuboCop::Cop::Base
Instance Method Details
#integer_op_rand?(node) ⇒ Object
34 35 36 37 38 39 40 41 |
# File 'lib/rubocop/cop/style/random_with_offset.rb', line 34 def_node_matcher :integer_op_rand?, <<~PATTERN (send int {:+ :-} (send {nil? (const {nil? cbase} :Random) (const {nil? cbase} :Kernel)} :rand {int (irange int int) (erange int int)})) PATTERN |
#on_send(node) ⇒ Object
64 65 66 67 68 69 70 71 72 73 |
# File 'lib/rubocop/cop/style/random_with_offset.rb', line 64 def on_send(node) return unless node.receiver return unless integer_op_rand?(node) || rand_op_integer?(node) || rand_modified?(node) add_offense(node) do |corrector| autocorrect(corrector, node) end end |
#rand_modified?(node) ⇒ Object
55 56 57 58 59 60 61 62 |
# File 'lib/rubocop/cop/style/random_with_offset.rb', line 55 def_node_matcher :rand_modified?, <<~PATTERN (send (send {nil? (const {nil? cbase} :Random) (const {nil? cbase} :Kernel)} :rand {int (irange int int) (erange int int)}) {:succ :pred :next}) PATTERN |
#rand_op_integer?(node) ⇒ Object
44 45 46 47 48 49 50 51 52 |
# File 'lib/rubocop/cop/style/random_with_offset.rb', line 44 def_node_matcher :rand_op_integer?, <<~PATTERN (send (send {nil? (const {nil? cbase} :Random) (const {nil? cbase} :Kernel)} :rand {int (irange int int) (erange int int)}) {:+ :-} int) PATTERN |