rubocop-magic_numbers 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea6ef829ef5402bdcd314250492b87a6f734d7633c54531cfa779689b690b851
4
- data.tar.gz: b59bc49fb9783017ae9aa7999984d474779b215df32ac20da1bcafdcb60ade76
3
+ metadata.gz: 5510596fa8384cbcc426de2aed19efdd8f4546b59b71f491b97d8627402a0ddf
4
+ data.tar.gz: 5da082fc1d7238202e13afcfefc5238c3c9ec289024c557716d5c2a8cbe5bde4
5
5
  SHA512:
6
- metadata.gz: 15ca87f92adc73951779988d2a75f06ed141fe15dbde2959cfb690a70dff4addc7e5839d68745f490d715fdd73ed581390c7121f599f8c22f00220aede4eecb3
7
- data.tar.gz: 7559121922795e3c71a9db0b975b83267bbe16f2aac43d1d9cb79e112235fe4ef7ae3387dc5aea1690232efc17747e84ffe2a4be77d5feb058cb0fc546f5a5a2
6
+ metadata.gz: b213bcb1d47aa8beae76f257adcd2e1d143155058551cd6b3ddf29117485cadbd2dc6dacb82be15cc77e517d2e7772d5187c2a8999185d7b97c7a654312a35a9
7
+ data.tar.gz: 6c2e696179b59f5c63aacb1150306210c94e6022f835355cdcdc607667189890d7ab510a75af8580aea93d3a2e2b3917664adb3363d50bac8ae5163bc3f47104
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # rubocop-magic_numbers
2
2
 
3
- ![Ruby tests](https://github.com/bodacious/rubocop-magic_numbers/actions/workflows/ruby.yml/badge.svg)
4
- ![RuboCop Lint](https://github.com/bodacious/rubocop-magic_numbers/actions/workflows/rubocop.yml/badge.svg)
3
+ ![Ruby tests](https://github.com/meetcleo/rubocop-magic_numbers/actions/workflows/ruby.yml/badge.svg)
4
+ ![RuboCop Lint](https://github.com/meetcleo/rubocop-magic_numbers/actions/workflows/rubocop.yml/badge.svg)
5
5
 
6
6
 
7
7
  `rubocop-magic_numbers` is a gem that detects the use of magic numbers within Ruby code and raises them as offenses.
@@ -137,8 +137,8 @@ For more information on configuring `rubocop`, please refer to the [official doc
137
137
 
138
138
  ## Contributing
139
139
 
140
- Bug reports and pull requests are welcome on GitHub at https://github.com/bodacious/rubocop-magic_numbers. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
140
+ Bug reports and pull requests are welcome on GitHub at https://github.com/meetcleo/rubocop-magic_numbers. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](https://www.contributor-covenant.org/) code of conduct.
141
141
 
142
142
  ## License
143
143
 
144
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
144
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -63,10 +63,10 @@ module RuboCop
63
63
 
64
64
  def illegal_argument?(node)
65
65
  captured_value = node_matches_pattern?(
66
- node:,
66
+ node: node,
67
67
  pattern: format(
68
68
  MAGIC_NUMBER_ARGUMENT_PATTERN,
69
- illegal_scalar_pattern:
69
+ illegal_scalar_pattern: illegal_scalar_pattern
70
70
  )
71
71
  )
72
72
  captured_value && !permitted_values.include?(captured_value)
@@ -77,10 +77,10 @@ module RuboCop
77
77
 
78
78
  def illegal_scalar_argument_to_setter?(node)
79
79
  method = node_matches_pattern?(
80
- node:,
80
+ node: node,
81
81
  pattern: format(
82
82
  MAGIC_NUMBER_ARGUMENT_TO_SETTER_PATTERN,
83
- illegal_scalar_pattern:
83
+ illegal_scalar_pattern: illegal_scalar_pattern
84
84
  )
85
85
  )
86
86
 
@@ -89,10 +89,10 @@ module RuboCop
89
89
 
90
90
  def illegal_multi_assign_right_hand_side?(node)
91
91
  node_matches_pattern?(
92
- node:,
92
+ node: node,
93
93
  pattern: format(
94
94
  MAGIC_NUMBER_MULTI_ASSIGN_PATTERN,
95
- illegal_scalar_pattern:
95
+ illegal_scalar_pattern: illegal_scalar_pattern
96
96
  )
97
97
  )
98
98
  end
@@ -44,10 +44,10 @@ module RuboCop
44
44
 
45
45
  def illegal_positional_default?(node)
46
46
  node_matches_pattern?(
47
- node:,
47
+ node: node,
48
48
  pattern: format(
49
49
  MAGIC_NUMBER_OPTIONAL_ARGUMENT_PATTERN,
50
- illegal_scalar_pattern:
50
+ illegal_scalar_pattern: illegal_scalar_pattern
51
51
  )
52
52
  )
53
53
  end
@@ -54,9 +54,9 @@ module RuboCop
54
54
  return implicit_return?(node.children.last) if is_node_begin_type
55
55
 
56
56
  pattern = format(MAGIC_NUMBER_RETURN_PATTERN, {
57
- illegal_scalar_pattern:
57
+ illegal_scalar_pattern: illegal_scalar_pattern
58
58
  })
59
- node_matches_pattern?(node:, pattern:)
59
+ node_matches_pattern?(node: node, pattern: pattern)
60
60
  end
61
61
  end
62
62
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module MagicNumbers
5
- VERSION = '0.3.0'
5
+ VERSION = '0.4.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-magic_numbers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gavin Morrice
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-06-29 00:00:00.000000000 Z
12
+ date: 2023-08-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: parser
@@ -70,7 +70,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
70
70
  requirements:
71
71
  - - ">="
72
72
  - !ruby/object:Gem::Version
73
- version: 3.2.0
73
+ version: 2.7.0
74
74
  required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  requirements:
76
76
  - - ">="