ws-style 6.11.2 → 6.12.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/Gemfile.lock +7 -7
- data/core.yml +7 -0
- data/lib/ws/style/version.rb +1 -1
- data/ws-style.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f4d34fccf285bd944833b2bf0600943fa15336b76a039a9e1b65c9f83251663
|
4
|
+
data.tar.gz: 4e521b797463416a8acd9a6892bc64afe9463da59b4eebe31067a9afa5acfa3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6662199c684e517e7c02771d650e47568e4c4979fb451043c8e94e2f99c7f47d703ff7447b5c9f2845252fa4e13c9997cb4b2989ec83745eb2fc745b52854f9
|
7
|
+
data.tar.gz: 4396c24eefd1d392cfea644c7521987086f3145c44986cf873457eb903e659c45269444129b908ca5fc4e1486abe1309d2b8f966aa71d3070c85da37a0be7ede
|
data/CHANGELOG.md
CHANGED
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
6
6
|
|
7
|
+
## 6.12.2 - 2021-12-16
|
8
|
+
### Changed
|
9
|
+
- Upgraded rubocop to 1.23
|
10
|
+
|
11
|
+
## 6.12.1 - 2021-12-09
|
12
|
+
### Changed
|
13
|
+
- Disable new Gemspec/RequireMFA cop
|
14
|
+
|
15
|
+
## 6.12.0 - 2021-12-06
|
16
|
+
- Update `rubocop-vendor`, which disallows `recursive-open-struct`
|
17
|
+
|
18
|
+
## 6.11.3 - 2021-11-19
|
19
|
+
### Changed
|
20
|
+
- Layout/ArgumentAlignment uses with_fixed_indentation
|
21
|
+
|
7
22
|
## 6.11.2 - 2021-11-19
|
8
23
|
### Changed
|
9
24
|
- Add concurrenty to GitHub Actions workflow
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ws-style (6.
|
5
|
-
rubocop (>= 1.
|
4
|
+
ws-style (6.12.2)
|
5
|
+
rubocop (>= 1.23)
|
6
6
|
rubocop-performance (>= 1.10.2)
|
7
7
|
rubocop-rails (>= 2.9.1)
|
8
8
|
rubocop-rspec (>= 2.2.0)
|
@@ -33,13 +33,13 @@ GEM
|
|
33
33
|
thor (~> 0.20)
|
34
34
|
minitest (5.14.4)
|
35
35
|
parallel (1.21.0)
|
36
|
-
parser (3.0.
|
36
|
+
parser (3.0.3.1)
|
37
37
|
ast (~> 2.4.1)
|
38
38
|
rack (2.2.3)
|
39
39
|
rainbow (3.0.0)
|
40
40
|
rake (13.0.6)
|
41
41
|
rchardet (1.8.0)
|
42
|
-
regexp_parser (2.
|
42
|
+
regexp_parser (2.2.0)
|
43
43
|
rexml (3.2.5)
|
44
44
|
rspec (3.10.0)
|
45
45
|
rspec-core (~> 3.10.0)
|
@@ -63,7 +63,7 @@ GEM
|
|
63
63
|
rubocop-ast (>= 1.12.0, < 2.0)
|
64
64
|
ruby-progressbar (~> 1.7)
|
65
65
|
unicode-display_width (>= 1.4.0, < 3.0)
|
66
|
-
rubocop-ast (1.
|
66
|
+
rubocop-ast (1.14.0)
|
67
67
|
parser (>= 3.0.1.1)
|
68
68
|
rubocop-performance (1.12.0)
|
69
69
|
rubocop (>= 1.7.0, < 2.0)
|
@@ -74,7 +74,7 @@ GEM
|
|
74
74
|
rubocop (>= 1.7.0, < 2.0)
|
75
75
|
rubocop-rspec (2.6.0)
|
76
76
|
rubocop (~> 1.19)
|
77
|
-
rubocop-vendor (0.
|
77
|
+
rubocop-vendor (0.7.0)
|
78
78
|
rubocop (>= 0.53.0)
|
79
79
|
ruby-progressbar (1.11.0)
|
80
80
|
thor (0.20.3)
|
@@ -96,4 +96,4 @@ DEPENDENCIES
|
|
96
96
|
ws-style!
|
97
97
|
|
98
98
|
BUNDLED WITH
|
99
|
-
2.2.
|
99
|
+
2.2.33
|
data/core.yml
CHANGED
@@ -34,6 +34,9 @@ Lint/AmbiguousBlockAssociation:
|
|
34
34
|
Exclude:
|
35
35
|
- "spec/**/*"
|
36
36
|
|
37
|
+
Layout/ArgumentAlignment:
|
38
|
+
EnforcedStyle: with_fixed_indentation
|
39
|
+
|
37
40
|
Layout/DotPosition:
|
38
41
|
EnforcedStyle: trailing
|
39
42
|
|
@@ -438,6 +441,10 @@ Style/IfWithBooleanLiteralBranches:
|
|
438
441
|
Gemspec/DateAssignment:
|
439
442
|
Enabled: True
|
440
443
|
|
444
|
+
# rubocop 1.23
|
445
|
+
Gemspec/RequireMFA:
|
446
|
+
Enabled: False
|
447
|
+
|
441
448
|
Style/HashConversion:
|
442
449
|
Enabled: True
|
443
450
|
|
data/lib/ws/style/version.rb
CHANGED
data/ws-style.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.require_paths = ['lib']
|
23
23
|
s.required_ruby_version = '>= 2.7.2'
|
24
24
|
|
25
|
-
s.add_dependency 'rubocop', '>= 1.
|
25
|
+
s.add_dependency 'rubocop', '>= 1.23'
|
26
26
|
s.add_dependency 'rubocop-performance', '>= 1.10.2'
|
27
27
|
s.add_dependency 'rubocop-rails', '>= 2.9.1'
|
28
28
|
s.add_dependency 'rubocop-rspec', '>= 2.2.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ws-style
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.
|
4
|
+
version: 6.12.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Graham
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: '1.23'
|
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.23'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-performance
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|