rubocop-i18n 3.2.0 → 3.2.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: 40440c74a9f3245bc18bc95f36f3fddc4512249611f680ba0a8a8ee3027411a0
4
- data.tar.gz: f4c16aa614332d0f7938deaee0feedfc6d13bbca695f54a42147aa6911d5226b
3
+ metadata.gz: fda7be0dbfbfc1501a16330bb1e4cc629a91d9f3a87635ea563e161e9fa66c97
4
+ data.tar.gz: 7919994e5321618fe590f699c39f0056bdba4ba8269d89fe6be91548a5ec5404
5
5
  SHA512:
6
- metadata.gz: 06b836f7100a74801a7d3f3c46e2df2a9d620fad44bc5279b92ec3e1748daa1d7b938cdbf496b00f4b8edd541c0d44e3c704720990ebf746f031fc8707b69d94
7
- data.tar.gz: 0cc9e35e18192a913138a20f442e5f8bbb927aab67caa6a1b381df27e2b126792db86cd21e6842ce76dac165a526416aa27fca447b91d507eb5b722df2c735b4
6
+ metadata.gz: 119d18b16d3dec2a93a84861516f8ca4f79e1878cf71e63a400c9c24e9eb9da0579fc8c0b61963a0285e4509874ca5ffe51942f8dc95acb3b920b0f830176c34
7
+ data.tar.gz: 32115fb43cadb384bceeff872b5640a70641e8da497ac189a6ccfd8c567cd9966dfd3e90b9548b31e2e9d681d709ce3ba68d21c8ce9384890c6171b68f6d98a6
@@ -8,9 +8,11 @@ assignees: ''
8
8
  ---
9
9
 
10
10
  **Describe the bug**
11
+
11
12
  A clear and concise description of what the bug is.
12
13
 
13
14
  **To Reproduce**
15
+
14
16
  Steps to reproduce the behavior:
15
17
  1. Go to '...'
16
18
  2. Click on '....'
@@ -18,21 +20,39 @@ Steps to reproduce the behavior:
18
20
  4. See error
19
21
 
20
22
  **Expected behavior**
23
+
21
24
  A clear and concise description of what you expected to happen.
22
25
 
23
26
  **Screenshots**
27
+
24
28
  If applicable, add screenshots to help explain your problem.
25
29
 
26
30
  **Desktop (please complete the following information):**
31
+
27
32
  - OS: [e.g. iOS]
28
33
  - Browser [e.g. chrome, safari]
29
34
  - Version [e.g. 22]
30
35
 
31
36
  **Smartphone (please complete the following information):**
37
+
32
38
  - Device: [e.g. iPhone6]
33
39
  - OS: [e.g. iOS8.1]
34
40
  - Browser [e.g. stock browser, safari]
35
41
  - Version [e.g. 22]
36
42
 
37
43
  **Additional context**
44
+
38
45
  Add any other context about the problem here.
46
+
47
+ **RuboCop version**
48
+
49
+ Include the output of `rubocop -V` or `bundle exec rubocop -V` if using Bundler.
50
+ If you see extension cop versions (e.g. `rubocop-performance`, `rubocop-rspec`, and others)
51
+ output by `rubocop -V`, include them as well. Here's an example:
52
+
53
+ ```console
54
+ $ [bundle exec] rubocop -V
55
+ 1.73.1 (using Parser 3.3.5.0, rubocop-ast 1.32.3, analyzing as Ruby 3.3, running on ruby 3.3.5) [x86_64-linux]
56
+ - rubocop-performance 1.22.1
57
+ - rubocop-rspec 3.1.0
58
+ ```
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Change Log
2
2
 
3
- ### [master (Unreleased)](https://github.com/rubocop/rubocop-i18n/compare/v3.1.0...master)
3
+ ### [master (Unreleased)](https://github.com/rubocop/rubocop-i18n/compare/v3.2.1...master)
4
+
5
+ ### [3.2.1](https://github.com/rubocop/rubocop-i18n/compare/v3.2.0...v3.2.1)
6
+
7
+ * Make the runtime dependency on RuboCop more flexible.
4
8
 
5
9
  ### [3.2.0](https://github.com/rubocop/rubocop-i18n/compare/v3.1.0...v3.2.0)
6
10
 
data/Rakefile CHANGED
@@ -11,5 +11,5 @@ task test: %i[rubocop spec]
11
11
 
12
12
  desc 'Run RuboCop'
13
13
  task :rubocop do
14
- sh 'rubocop -P'
14
+ sh 'rubocop'
15
15
  end
data/rubocop-i18n.gemspec CHANGED
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = 'rubocop-i18n'
8
- spec.version = '3.2.0'
8
+ spec.version = '3.2.1'
9
9
  spec.authors = ['Puppet', 'Brandon High', 'TP Honey', 'Helen Campbell']
10
10
 
11
11
  spec.summary = 'RuboCop rules for i18n'
@@ -28,5 +28,5 @@ Gem::Specification.new do |spec|
28
28
  }
29
29
 
30
30
  spec.add_dependency 'lint_roller', '~> 1.1'
31
- spec.add_dependency 'rubocop', '~> 1.72.1'
31
+ spec.add_dependency 'rubocop', '>= 1.72.1'
32
32
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet
@@ -10,7 +10,7 @@ authors:
10
10
  - Helen Campbell
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2025-02-19 00:00:00.000000000 Z
13
+ date: 2025-03-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: lint_roller
@@ -30,14 +30,14 @@ dependencies:
30
30
  name: rubocop
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - "~>"
33
+ - - ">="
34
34
  - !ruby/object:Gem::Version
35
35
  version: 1.72.1
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - "~>"
40
+ - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: 1.72.1
43
43
  description: RuboCop rules for detecting and autocorrecting undecorated strings for