rubocop-asjer 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 421e0eeba6d681b0ee11e88059773f9278c24aa02c30f509e2bd23713ca321e8
4
- data.tar.gz: fc1298e689e874814629eab4120349f7658fc848719fff602608f92feb81bb0c
3
+ metadata.gz: a228c899c0ddc18cd12cc18f5d43dced28ade2a8e230b61db7d2b4eff348671b
4
+ data.tar.gz: 3bee7420da10095a5d2c2eb4cbbde60f3fbb787f46bf73875288da5a07eb4372
5
5
  SHA512:
6
- metadata.gz: 5e9d9d5a7d0169b30cafb338aa14c61dacfceca1f423d66892791f51fca3d4f3be8a400cc14a834360cdd3ab5e52153658ff1725922a293bf7bca70d81854c31
7
- data.tar.gz: 9186614b1209094a659de0a9ec93bc3c5ab7d581db77528977f6ecf4f188350bc9ec32348c356dcb8d1b38e78f82aeb7b4a9f03323eefc5c1c788b5ce6e47ee7
6
+ metadata.gz: c63346eb316976ed2c79a48d52354f55b533d2c45aff4b9ebecb1989a5f023b2456a9078bc7ce92fd29f774960bb616da32841f9280c48424fc81005c66bf9ca
7
+ data.tar.gz: 9dd4c7226b6f413d716a5cb4687d6233f301284d21fb1c9c9e67850a92ed5f394b685fbe2518712573d261ece51fb7e3517ffa7dbfc9327030efa1923cf50787
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.3.0"
2
+ ".": "0.3.1"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.1](https://github.com/asjer/rubocop-asjer/compare/v0.3.0...v0.3.1) (2026-01-03)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * enable autocorrect for all `default:` option cases in `NoDefaultTranslation` ([fbd359e](https://github.com/asjer/rubocop-asjer/commit/fbd359e6f252188880535c87b3f5abbbd8bac571))
9
+
3
10
  ## [0.3.0](https://github.com/asjer/rubocop-asjer/compare/v0.2.0...v0.3.0) (2026-01-03)
4
11
 
5
12
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Asjer
5
- VERSION = '0.3.0'
5
+ VERSION = '0.3.1'
6
6
  end
7
7
  end
@@ -34,9 +34,6 @@ module RuboCop
34
34
  def on_send(node)
35
35
  translation_with_default?(node) do |default_pair|
36
36
  add_offense(default_pair) do |corrector|
37
- # Skip autocorrection if default: is the only hash option
38
- next if default_pair.parent.pairs.size == 1
39
-
40
37
  corrector.remove(removal_range(default_pair))
41
38
  end
42
39
  end
@@ -45,7 +42,20 @@ module RuboCop
45
42
  private
46
43
 
47
44
  def removal_range(node)
48
- pairs = node.parent.pairs
45
+ hash_node = node.parent
46
+ pairs = hash_node.pairs
47
+
48
+ return hash_with_comma_range(hash_node) if pairs.size == 1
49
+
50
+ pair_removal_range(node, pairs)
51
+ end
52
+
53
+ def hash_with_comma_range(hash_node)
54
+ with_space = range_with_surrounding_space(range: hash_node.source_range, side: :left)
55
+ range_with_surrounding_comma(with_space, :left)
56
+ end
57
+
58
+ def pair_removal_range(node, pairs)
49
59
  index = pairs.index(node)
50
60
 
51
61
  last_pair?(index, pairs) ? leading_range(node, pairs[index - 1]) : trailing_range(node, pairs[index + 1])
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-asjer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Asjer Querido