rubocop-i18n 3.2.1 → 3.2.2
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 +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/rubocop/i18n/plugin.rb +1 -1
- data/lib/rubocop/i18n/version.rb +7 -0
- data/rubocop-i18n.gemspec +2 -3
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d7a0f12f1f5a4d4bd02777c1b25493ecbeeb22123ab9303972dba417008663d4
|
4
|
+
data.tar.gz: 03a822da901549b45baba2e0bd736dba254d4185f7475f78b5ca9f40ce373e5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d9d2f449bb553912dd8bb21b2694d759f7538d5ac9dfa52da24e18f13178d267e16c5e3d7d163a3a1fb6a0808744a7bec1140ff62cb3a2f29f889fe012d4785
|
7
|
+
data.tar.gz: 509e30770b84cc90854ccd8490370a4e7c756c0ae8da5a4c03fab87b939c879f507ea13c918a297be1891c1c17a97c59cdbfd24f6df03381df672fd6f6604beb
|
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.2.
|
3
|
+
### [master (Unreleased)](https://github.com/rubocop/rubocop-i18n/compare/v3.2.2...master)
|
4
|
+
|
5
|
+
### [3.2.2](https://github.com/rubocop/rubocop-i18n/compare/v3.2.1...v3.2.2)
|
6
|
+
|
7
|
+
* Fix incorrect rubocop-i18n version number when `rubocop -V` is used.
|
4
8
|
|
5
9
|
### [3.2.1](https://github.com/rubocop/rubocop-i18n/compare/v3.2.0...v3.2.1)
|
6
10
|
|
data/lib/rubocop/i18n/plugin.rb
CHANGED
data/rubocop-i18n.gemspec
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
3
|
+
require_relative 'lib/rubocop/i18n/version'
|
5
4
|
|
6
5
|
Gem::Specification.new do |spec|
|
7
6
|
spec.name = 'rubocop-i18n'
|
8
|
-
spec.version =
|
7
|
+
spec.version = RuboCop::I18n::VERSION
|
9
8
|
spec.authors = ['Puppet', 'Brandon High', 'TP Honey', 'Helen Campbell']
|
10
9
|
|
11
10
|
spec.summary = 'RuboCop rules for i18n'
|
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.
|
4
|
+
version: 3.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet
|
@@ -74,6 +74,7 @@ files:
|
|
74
74
|
- lib/rubocop/cop/i18n_cops.rb
|
75
75
|
- lib/rubocop/i18n.rb
|
76
76
|
- lib/rubocop/i18n/plugin.rb
|
77
|
+
- lib/rubocop/i18n/version.rb
|
77
78
|
- rubocop-i18n.gemspec
|
78
79
|
homepage: https://github.com/rubocop/rubocop-i18n
|
79
80
|
licenses:
|