autocop 0.2.1 → 0.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/.autocop-rubocop.yml +1 -1
- data/CHANGELOG.md +6 -2
- data/Gemfile.lock +3 -3
- data/lib/autocop/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b2e392617f1792e2bb44532d13c7c6721a6e1d17abb3e6c4042cc6f901c8a33a
|
|
4
|
+
data.tar.gz: 5539cec44a29123cdf6b1f3786eabd7aefcbbfdfc61ce08e36bb29852a11ce07
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fc9cb5524efec702436120d7bb80e64a6451fe5798b5934a529c04c63566c8249faa9a2ad5ea65b3abc20f7edaba916cae928a2ba1c5a6d30a1c10892ccb867f
|
|
7
|
+
data.tar.gz: ed541d86678722c4e12f5393e90db9d42d2dc1a77083af9cf3607f9f3b0a3104681a6cecda72131135bcb7b56c2a79d6a17bfbe33eb70527d418bd5852d469ec
|
data/.autocop-rubocop.yml
CHANGED
|
@@ -182,7 +182,7 @@ Lint/UnderscorePrefixedVariableName:
|
|
|
182
182
|
Enabled: true
|
|
183
183
|
|
|
184
184
|
# Supports --auto-correct
|
|
185
|
-
Lint/
|
|
185
|
+
Lint/UnneededCopDisableDirective:
|
|
186
186
|
Description: 'Checks for rubocop:disable comments that can be removed. Note: this
|
|
187
187
|
cop is not disabled when disabling all cops. It must be explicitly disabled.'
|
|
188
188
|
Enabled: true
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
## v0.2.
|
|
1
|
+
## v0.2.2 - 2018-10-10
|
|
2
|
+
|
|
3
|
+
- Correct the naming of the UnneededCopDisableDirective
|
|
4
|
+
|
|
5
|
+
## v0.2.1 - 2018-10-03
|
|
2
6
|
|
|
3
7
|
- Update rubocop version 0.59.2
|
|
4
|
-
- Change
|
|
8
|
+
- Change RSpec/ImplicitExpect enforced style to be is_expected
|
|
5
9
|
|
|
6
10
|
## v0.2.0 - 2018-08-31
|
|
7
11
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
autocop (0.2.
|
|
4
|
+
autocop (0.2.2)
|
|
5
5
|
rubocop (>= 0.52.1)
|
|
6
6
|
rubocop-rspec (>= 1.22.1)
|
|
7
7
|
|
|
@@ -43,7 +43,7 @@ GEM
|
|
|
43
43
|
rainbow (>= 2.2.2, < 4.0)
|
|
44
44
|
ruby-progressbar (~> 1.7)
|
|
45
45
|
unicode-display_width (~> 1.0, >= 1.0.1)
|
|
46
|
-
rubocop-rspec (1.
|
|
46
|
+
rubocop-rspec (1.30.0)
|
|
47
47
|
rubocop (>= 0.58.0)
|
|
48
48
|
ruby-progressbar (1.10.0)
|
|
49
49
|
unicode-display_width (1.4.0)
|
|
@@ -59,4 +59,4 @@ DEPENDENCIES
|
|
|
59
59
|
rspec
|
|
60
60
|
|
|
61
61
|
BUNDLED WITH
|
|
62
|
-
1.16.
|
|
62
|
+
1.16.4
|
data/lib/autocop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: autocop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Autolist Engineering
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
11
|
+
date: 2018-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|