ws-style 6.11.1 → 6.12.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6476ad24069f3a109af754476389fb4e5935becf55638d59a0aeb50f2d2c4d70
4
- data.tar.gz: af43b03439e96d261d34151952d1246913fb79e87307529cf958b3b0e06cc7d5
3
+ metadata.gz: 87c28e79d89beb888fedffe24535b3bae5dd1e208afdde4c09839fb5cec7c31f
4
+ data.tar.gz: fb0fed1c33c18094ebc79e6a5a764835f58522a51ce77ed9f9f3590d7d468101
5
5
  SHA512:
6
- metadata.gz: 35091b9338557f5c13ec7d9835557e36dd10793e3c4e4119bcfc2eeb7ea1e8779db64b3e9d004c14ee445726063cd14632e1cac7dd606b89e7261ad058f68ab6
7
- data.tar.gz: ee43282a64bfbbdf41b91ee67ac13063a07b0a71e0d997ebcbd411a2f8d2333a6c3ec885d714b6fda3260fa0ed561c027d9ad4fa8140cb3dd3ef573e9b990d7d
6
+ metadata.gz: 347c185e8b15f9732d0c588b300076ea33cd702b9e53ad81a861d8271e2e31ff20fc688fa8a9b7ae560ba4726d655cbe343db3dc312fbffe16626fe4ecef03b0
7
+ data.tar.gz: a42965bccc783d6d7aa13ea53dd6052ef46027f9af9866a02a5348d2e18a0f4aac193308484952006586554b2e4d1e2ee671e896e2981ca62b00345b56dd0512
@@ -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/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.1 - 2021-12-09
8
+ ### Changed
9
+ - Disable new Gemspec/RequireMFA cop
10
+
11
+ ## 6.12.0 - 2021-12-06
12
+ - Update `rubocop-vendor`, which disallows `recursive-open-struct`
13
+
14
+ ## 6.11.3 - 2021-11-19
15
+ ### Changed
16
+ - Layout/ArgumentAlignment uses with_fixed_indentation
17
+
18
+ ## 6.11.2 - 2021-11-19
19
+ ### Changed
20
+ - Add concurrenty to GitHub Actions workflow
21
+
7
22
  ## 6.11.1 - 2021-11-08
8
23
  ### Changed
9
24
  - Upgrade dependencies
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ws-style (6.11.1)
4
+ ws-style (6.12.1)
5
5
  rubocop (>= 1.12.1)
6
6
  rubocop-performance (>= 1.10.2)
7
7
  rubocop-rails (>= 2.9.1)
@@ -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.2.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.1.1)
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)
@@ -54,7 +54,7 @@ GEM
54
54
  diff-lcs (>= 1.2.0, < 2.0)
55
55
  rspec-support (~> 3.10.0)
56
56
  rspec-support (3.10.3)
57
- rubocop (1.22.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,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.13.0)
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.6.1)
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.30
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
 
@@ -1,5 +1,5 @@
1
1
  module Ws
2
2
  module Style
3
- VERSION = '6.11.1'.freeze
3
+ VERSION = '6.12.1'.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.11.1
4
+ version: 6.12.1
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-08 00:00:00.000000000 Z
11
+ date: 2021-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop