standard 1.34.0.1 → 1.35.0.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 +4 -4
- data/Gemfile.lock +6 -6
- data/lib/standard/prints_big_hairy_version_warning.rb +2 -2
- data/lib/standard/version.rb +1 -1
- data/standard.gemspec +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe603f8a2c3b1ded10bac8238309f4ec614ae524aab8e45a000fbe235db60b45
|
|
4
|
+
data.tar.gz: fe477292d91a2c8e44b2ec692b848c9eb51567cf8c87a2a93bf3b8493500e75c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bac5ce823d01c63159448a512adbc4ad0aea826ffb7af09019266ea52f024fb2b37babcafee8cfa98156ef4ce610e57d3f866c036ab6ba1383a1995405d5072
|
|
7
|
+
data.tar.gz: 6fb8a1f30f4807ab18d20ccf12c1945bcc558aa9f423e1ca78c4577855ce176443dd20d4bce7399b7ca25fe20c1c5cc4e9e9d21938abe67949b66074b2c35d28
|
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
standard (1.
|
|
4
|
+
standard (1.35.0.1)
|
|
5
5
|
language_server-protocol (~> 3.17.0.2)
|
|
6
6
|
lint_roller (~> 1.0)
|
|
7
|
-
rubocop (~> 1.
|
|
7
|
+
rubocop (~> 1.62)
|
|
8
8
|
standard-custom (~> 1.0.0)
|
|
9
9
|
standard-performance (~> 1.3)
|
|
10
10
|
|
|
@@ -30,7 +30,7 @@ GEM
|
|
|
30
30
|
rake (13.0.6)
|
|
31
31
|
regexp_parser (2.8.2)
|
|
32
32
|
rexml (3.2.6)
|
|
33
|
-
rubocop (1.
|
|
33
|
+
rubocop (1.62.1)
|
|
34
34
|
json (~> 2.3)
|
|
35
35
|
language_server-protocol (>= 3.17.0)
|
|
36
36
|
parallel (~> 1.10)
|
|
@@ -38,11 +38,11 @@ GEM
|
|
|
38
38
|
rainbow (>= 2.2.2, < 4.0)
|
|
39
39
|
regexp_parser (>= 1.8, < 3.0)
|
|
40
40
|
rexml (>= 3.2.5, < 4.0)
|
|
41
|
-
rubocop-ast (>= 1.
|
|
41
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
|
42
42
|
ruby-progressbar (~> 1.7)
|
|
43
43
|
unicode-display_width (>= 2.4.0, < 3.0)
|
|
44
|
-
rubocop-ast (1.
|
|
45
|
-
parser (>= 3.
|
|
44
|
+
rubocop-ast (1.31.2)
|
|
45
|
+
parser (>= 3.3.0.4)
|
|
46
46
|
rubocop-performance (1.20.1)
|
|
47
47
|
rubocop (>= 1.48.1, < 2.0)
|
|
48
48
|
rubocop-ast (>= 1.30.0, < 2.0)
|
|
@@ -7,7 +7,7 @@ module Standard
|
|
|
7
7
|
|
|
8
8
|
What's going on here?
|
|
9
9
|
---------------------
|
|
10
|
-
Version 1.
|
|
10
|
+
Version 1.35.0 of Standard was set to depend on `~> 1.62' of RuboCop. This
|
|
11
11
|
constraint is too loose, and covers all minor versions of RuboCop 1.x.
|
|
12
12
|
|
|
13
13
|
"How do I fix this?", you might be asking.
|
|
@@ -28,7 +28,7 @@ module Standard
|
|
|
28
28
|
Using rubocop 1.48.1 (was 1.49.0)
|
|
29
29
|
Using standard 1.26.0 (was 0.0.36)
|
|
30
30
|
|
|
31
|
-
This version (1.
|
|
31
|
+
This version (1.35.0.1) is an inoperative placeholder gem that exists
|
|
32
32
|
solely to print this message.
|
|
33
33
|
|
|
34
34
|
We're very sorry for this inconvenience!
|
data/lib/standard/version.rb
CHANGED
data/standard.gemspec
CHANGED
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
spec.require_paths = ["lib"]
|
|
25
25
|
spec.metadata["rubygems_mfa_required"] = "true"
|
|
26
26
|
|
|
27
|
-
spec.add_dependency "rubocop", "~> 1.
|
|
27
|
+
spec.add_dependency "rubocop", "~> 1.62"
|
|
28
28
|
|
|
29
29
|
spec.add_dependency "lint_roller", "~> 1.0"
|
|
30
30
|
spec.add_dependency "standard-custom", "~> 1.0.0"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: standard
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.35.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Searls
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.62'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1.
|
|
26
|
+
version: '1.62'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: lint_roller
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -176,7 +176,7 @@ post_install_message: |
|
|
|
176
176
|
|
|
177
177
|
What's going on here?
|
|
178
178
|
---------------------
|
|
179
|
-
Version 1.
|
|
179
|
+
Version 1.35.0 of Standard was set to depend on `~> 1.62' of RuboCop. This
|
|
180
180
|
constraint is too loose, and covers all minor versions of RuboCop 1.x.
|
|
181
181
|
|
|
182
182
|
"How do I fix this?", you might be asking.
|
|
@@ -197,7 +197,7 @@ post_install_message: |
|
|
|
197
197
|
Using rubocop 1.48.1 (was 1.49.0)
|
|
198
198
|
Using standard 1.26.0 (was 0.0.36)
|
|
199
199
|
|
|
200
|
-
This version (1.
|
|
200
|
+
This version (1.35.0.1) is an inoperative placeholder gem that exists
|
|
201
201
|
solely to print this message.
|
|
202
202
|
|
|
203
203
|
We're very sorry for this inconvenience!
|