ws-style 6.10.0 → 6.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e9572aa52a2fef37a7f98787802a020ced5c093aa41c18a9b6ce9cfe756f15d2
4
- data.tar.gz: '08000808eea62019790f774412b2b1eca289a5a927ba18b8818098b79811e028'
3
+ metadata.gz: d448cb82a29cb217cba79d373bdb02b706d5e059b14e74d01a3f333f470bcb61
4
+ data.tar.gz: 30a86222b81b2c6b24dda59a54b9ce9c68e78dc12d98a429e6c0c7b0b478a6a8
5
5
  SHA512:
6
- metadata.gz: 46cde8b3a3b9b1700fc46d32a7a523d9c6bc804ff4caaf6ccd0a0bd531c2fe3a6cd298fed46a7e3d65513901e80822a06bf3b64ee0a7c7c8d2b1a3d7f02e328e
7
- data.tar.gz: 56e86e2c84c8e9142dac07613c8f8fd7179cd6132c62b6d9fb5fdc59e771c420972c87858c6291627f58c20ee5613611786249915b35e6a53b79ac340406db18
6
+ metadata.gz: d49f3988f54b1cf3d258c80166e945d1e4feb84a8435cf350352c7dbf2564fdc087f8ca30dc57fdf4aeae699dffa1d2765b9346908d4cf527ade2b2399e22109
7
+ data.tar.gz: 6bb0ad4435fe043555200fc6df9da156bc117e5ed82a3916576f10ff1063b62cb5262c86dfb1d9ed9344bb117071ade2311984f3bdfc7be9ec0e381568f0e8b0
@@ -2,6 +2,10 @@
2
2
  name: Pipeline
3
3
  on:
4
4
  - push
5
+ concurrency:
6
+ group: ${{ github.workflow }}-${{ github.ref }}
7
+ cancel-in-progress: true
8
+
5
9
  jobs:
6
10
  build:
7
11
  name: Build
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.2
1
+ 2.7.4
data/CHANGELOG.md CHANGED
@@ -4,6 +4,26 @@ 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.11.2 - 2021-11-19
8
+ ### Changed
9
+ - Add concurrenty to GitHub Actions workflow
10
+
11
+ ## 6.11.1 - 2021-11-08
12
+ ### Changed
13
+ - Upgrade dependencies
14
+
15
+ ## 6.11.0 - 2021-10-21
16
+ ### Changed
17
+ - Upgrade rubocop to 1.22.3
18
+ - Upgrade rubocop-performance to 1.12.0
19
+ - Upgrade rubocop-rails to 2.12.4
20
+
21
+ ## 6.10.1 - 2021-10-21
22
+ ### Changed
23
+ - Removed rules that conflict with auto-correcting line-length
24
+ - Enable `Layout/ArgumentAlignment`
25
+ - For `Layout/HashAlignment`, change `EnforcedLastArgumentHashStyle` to `always_inspect`
26
+
7
27
  ## 6.10.0 - 2021-10-13
8
28
  ### Changed
9
29
  - Upgrade rubocop to 1.22.1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ws-style (6.10.0)
4
+ ws-style (6.11.2)
5
5
  rubocop (>= 1.12.1)
6
6
  rubocop-performance (>= 1.10.2)
7
7
  rubocop-rails (>= 2.9.1)
@@ -25,9 +25,9 @@ GEM
25
25
  diff-lcs (1.4.4)
26
26
  git (1.9.1)
27
27
  rchardet (~> 1.8)
28
- i18n (1.8.10)
28
+ i18n (1.8.11)
29
29
  concurrent-ruby (~> 1.0)
30
- json (2.5.1)
30
+ json (2.6.1)
31
31
  keepachangelog (0.6.1)
32
32
  json (~> 2.1)
33
33
  thor (~> 0.20)
@@ -53,8 +53,8 @@ GEM
53
53
  rspec-mocks (3.10.2)
54
54
  diff-lcs (>= 1.2.0, < 2.0)
55
55
  rspec-support (~> 3.10.0)
56
- rspec-support (3.10.2)
57
- rubocop (1.22.1)
56
+ rspec-support (3.10.3)
57
+ rubocop (1.23.0)
58
58
  parallel (~> 1.10)
59
59
  parser (>= 3.0.0.0)
60
60
  rainbow (>= 2.2.2, < 4.0)
@@ -63,16 +63,16 @@ 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.12.0)
66
+ rubocop-ast (1.13.0)
67
67
  parser (>= 3.0.1.1)
68
- rubocop-performance (1.11.5)
68
+ rubocop-performance (1.12.0)
69
69
  rubocop (>= 1.7.0, < 2.0)
70
70
  rubocop-ast (>= 0.4.0)
71
- rubocop-rails (2.12.3)
71
+ rubocop-rails (2.12.4)
72
72
  activesupport (>= 4.2.0)
73
73
  rack (>= 1.1)
74
74
  rubocop (>= 1.7.0, < 2.0)
75
- rubocop-rspec (2.5.0)
75
+ rubocop-rspec (2.6.0)
76
76
  rubocop (~> 1.19)
77
77
  rubocop-vendor (0.6.1)
78
78
  rubocop (>= 0.53.0)
@@ -81,7 +81,7 @@ GEM
81
81
  tzinfo (2.0.4)
82
82
  concurrent-ruby (~> 1.0)
83
83
  unicode-display_width (2.1.0)
84
- zeitwerk (2.4.2)
84
+ zeitwerk (2.5.1)
85
85
 
86
86
  PLATFORMS
87
87
  ruby
@@ -96,4 +96,4 @@ DEPENDENCIES
96
96
  ws-style!
97
97
 
98
98
  BUNDLED WITH
99
- 2.2.16
99
+ 2.2.30
data/core.yml CHANGED
@@ -27,15 +27,9 @@ AllCops:
27
27
  - "vendor/**/*"
28
28
  SuggestExtensions: false
29
29
 
30
- Layout/HashAlignment:
31
- EnforcedLastArgumentHashStyle: ignore_implicit
32
-
33
30
  Layout/ParameterAlignment:
34
31
  Enabled: false
35
32
 
36
- Layout/ArgumentAlignment:
37
- Enabled: false
38
-
39
33
  Lint/AmbiguousBlockAssociation:
40
34
  Exclude:
41
35
  - "spec/**/*"
@@ -529,3 +523,7 @@ RSpec/ExcessiveDocstringSpacing:
529
523
 
530
524
  RSpec/SubjectDeclaration:
531
525
  Enabled: True
526
+
527
+ # rubocop-performance 1.12
528
+ Performance/ConcurrentMonotonicTime:
529
+ Enabled: True
@@ -1,5 +1,5 @@
1
1
  module Ws
2
2
  module Style
3
- VERSION = '6.10.0'.freeze
3
+ VERSION = '6.11.2'.freeze
4
4
  end
5
5
  end
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.10.0
4
+ version: 6.11.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-10-13 00:00:00.000000000 Z
11
+ date: 2021-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -216,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
216
  - !ruby/object:Gem::Version
217
217
  version: '0'
218
218
  requirements: []
219
- rubygems_version: 3.1.4
219
+ rubygems_version: 3.1.6
220
220
  signing_key:
221
221
  specification_version: 4
222
222
  summary: Shared rubocop config