ws-style 6.14.2 → 6.14.4
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/.rubocop.yml +1 -0
- data/.rubocop_todo.yml +7 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +37 -7
- data/Gemfile.lock +35 -30
- data/lib/ws/style/version.rb +1 -1
- data/ws-style.gemspec +2 -2
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74e155a1867264224c2aa6c44282093f97b4b0ebc78cbedcb0a5561d9778a029
|
|
4
|
+
data.tar.gz: d806c88b2b72e772b04fd72fb8d97339e3cbaff1af87308ba797bf5fe159bd72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d86699b8c7c3e775dfd3791ba0a7e3db6bc9643559b50023f17cebe4cc312ed76a26dd9185be1ce13cd1c41c3421bb5b276b404896aa38198889fb4f9dbe145f
|
|
7
|
+
data.tar.gz: 1365f63d8af96476e86f50727330a0c58ea833f0c8ac41aff0928f31d62e33721d6134c59c19e3b74e669fd497e0d96915c2b7464cebb33aacd2ef6fd65b6872
|
data/.rubocop.yml
CHANGED
data/.rubocop_todo.yml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# This configuration was generated by
|
|
2
|
+
# `rubocop --auto-gen-config`
|
|
3
|
+
# on 2023-02-01 15:43:17 UTC using RuboCop version 1.44.1.
|
|
4
|
+
# The point is for the user to remove these configuration records
|
|
5
|
+
# one by one as the offenses are removed from the code base.
|
|
6
|
+
# Note that changes in the inspected code, or installation of new
|
|
7
|
+
# versions of RuboCop, may require this file to be generated again.
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.7.
|
|
1
|
+
2.7.7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
The format is based on [Keep a Changelog](
|
|
5
|
-
and this project adheres to [Semantic Versioning](
|
|
4
|
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
|
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## 6.14.4 - 2023-01-31
|
|
10
|
+
### Changed
|
|
11
|
+
- Upgraded to ruby 3
|
|
12
|
+
|
|
13
|
+
## 6.14.3 - 2023-01-03
|
|
14
|
+
### Changed
|
|
15
|
+
- Updated dependencies
|
|
6
16
|
|
|
7
17
|
## 6.14.2 - 2022-11-08
|
|
8
18
|
### Changed
|
|
@@ -12,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
22
|
### Changed
|
|
13
23
|
- NewCops rule can only be defined once.
|
|
14
24
|
|
|
15
|
-
## 6.14.0 - 2022-09-
|
|
25
|
+
## 6.14.0 - 2022-09-06
|
|
16
26
|
### Changed
|
|
17
27
|
- Support new rules introduced between rubocop 1.26 -> 1.36
|
|
18
28
|
|
|
@@ -139,6 +149,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
139
149
|
- Disable new Gemspec/RequireMFA cop
|
|
140
150
|
|
|
141
151
|
## 6.12.0 - 2021-12-06
|
|
152
|
+
### Changed
|
|
142
153
|
- Update `rubocop-vendor`, which disallows `recursive-open-struct`
|
|
143
154
|
|
|
144
155
|
## 6.11.3 - 2021-11-19
|
|
@@ -184,37 +195,47 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
184
195
|
- Upgraded rubocop to 1.19.1
|
|
185
196
|
|
|
186
197
|
## 6.9.5 - 2021-07-28
|
|
198
|
+
### Changed
|
|
187
199
|
- Upgraded rubocop to 1.18.4
|
|
188
200
|
|
|
189
201
|
## 6.9.4 - 2021-07-20
|
|
202
|
+
### Changed
|
|
190
203
|
- Upgraded dependencies
|
|
191
204
|
|
|
192
205
|
## 6.9.3 - 2021-07-20
|
|
206
|
+
### Changed
|
|
193
207
|
- Upgraded rubocop to 1.18.2
|
|
194
208
|
- Upgraded rubocop-rais to 2.11.2
|
|
195
209
|
|
|
196
210
|
## 6.9.2 - 2021-06-28
|
|
211
|
+
### Changed
|
|
197
212
|
- Update dependencies
|
|
198
213
|
|
|
199
214
|
## 6.9.1 - 2021-05-06
|
|
215
|
+
### Changed
|
|
200
216
|
- Migrate CI from CircleCI to GitHub Actions
|
|
201
217
|
- Change default GitHub branch to `main`
|
|
202
218
|
|
|
203
219
|
## 6.9.0 - 2021-04-06
|
|
220
|
+
### Changed
|
|
204
221
|
- Upgraded rubocop to 1.12.1
|
|
205
222
|
- Upgraded rubocop-performance to 1.10.2
|
|
206
223
|
- Upgraded rubocop-vendor to 0.6.0
|
|
207
224
|
|
|
208
225
|
## 6.8.9 - 2021-04-02
|
|
226
|
+
### Changed
|
|
209
227
|
- Set minimum required ruby version to 2.7.2
|
|
210
228
|
|
|
211
229
|
## 6.7.2 - 2021-03-15
|
|
230
|
+
### Changed
|
|
212
231
|
- Increase Metrics/MethodLength to 25 (1/6 of class length).
|
|
213
232
|
|
|
214
233
|
## 6.7.1 - 2021-03-09
|
|
234
|
+
### Changed
|
|
215
235
|
- Disable Lint/EmptyBlock
|
|
216
236
|
|
|
217
237
|
## 6.7.0 - 2021-03-05
|
|
238
|
+
### Changed
|
|
218
239
|
- Upgraded rubocop to 1.11.0
|
|
219
240
|
- Upgraded rubocop-performance to 1.10.1
|
|
220
241
|
- Upgraded rubocop-rails to 2.9.1
|
|
@@ -222,42 +243,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
222
243
|
- Upgraded rubocop-vendor to 0.5.0
|
|
223
244
|
|
|
224
245
|
## 6.6.3 - 2021-03-01
|
|
246
|
+
### Changed
|
|
225
247
|
- One more version bump to get it published
|
|
226
248
|
|
|
227
249
|
## 6.6.2 - 2021-03-01
|
|
250
|
+
### Changed
|
|
228
251
|
- Use GitHub Actions to publish gem
|
|
229
252
|
|
|
230
253
|
## 6.6.1 - 2021-03-01
|
|
254
|
+
### Changed
|
|
231
255
|
- Mostly just trying to get the version number bumped
|
|
232
256
|
|
|
233
257
|
## 6.6.0 - 2021-01-16
|
|
258
|
+
### Changed
|
|
234
259
|
- Rubocop FilePath should respect ActiveSupport::Inflector config if included
|
|
235
260
|
|
|
236
261
|
## 6.5.3 - 2020-12-17
|
|
262
|
+
### Changed
|
|
237
263
|
- Disable extension suggestions
|
|
238
264
|
|
|
239
265
|
## 6.5.2 - 2020-12-17
|
|
266
|
+
### Changed
|
|
240
267
|
- Add backstage catalog file + sonarqube project settings
|
|
241
268
|
|
|
242
269
|
## 6.5.1 - 2020-11-30
|
|
270
|
+
### Changed
|
|
243
271
|
- Disable EmptyLineBetweenClassDefs added in rubocop 1.4
|
|
244
272
|
|
|
245
273
|
## 6.5.0 - 2020-10-26
|
|
274
|
+
### Changed
|
|
246
275
|
- Upgrade RuboCop and RuboCop RSpec
|
|
247
276
|
|
|
248
277
|
## 6.4.0 - 2020-10-07
|
|
278
|
+
### Changed
|
|
249
279
|
- Upgrade RuboCop
|
|
250
280
|
|
|
251
281
|
## 6.3.0 - 2020-10-06
|
|
282
|
+
### Changed
|
|
252
283
|
- Upgrade RuboCop and enable cops that were voted in
|
|
253
284
|
|
|
254
285
|
## 6.2.0 - 2020-09-04
|
|
286
|
+
### Changed
|
|
255
287
|
- Disable Cops enabled in 6.1.0 until we can confirm we want them
|
|
256
288
|
|
|
257
289
|
## 6.1.1 - 2020-09-04
|
|
290
|
+
### Changed
|
|
258
291
|
- Disable RSpec/MultipleMemoizedHelpers cop
|
|
259
292
|
|
|
260
293
|
## 6.1.0 - 2020-08-27
|
|
294
|
+
### Changed
|
|
261
295
|
- Upgraded rubocop to 0.89
|
|
262
296
|
- Upgraded rubocop-performance to 1.7
|
|
263
297
|
- Upgraded rubocop-rails to 2.7
|
|
@@ -279,9 +313,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
279
313
|
## 5.1.0 - 2019-06-06
|
|
280
314
|
### Changed
|
|
281
315
|
- Added indentation cop, enforcing 2 space indentation.
|
|
282
|
-
|
|
283
316
|
This allows Rubocop to automatically format code like this:
|
|
284
|
-
|
|
285
317
|
```ruby
|
|
286
318
|
class Wizard
|
|
287
319
|
def cast_spell
|
|
@@ -289,9 +321,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
289
321
|
end
|
|
290
322
|
end
|
|
291
323
|
```
|
|
292
|
-
|
|
293
324
|
into this:
|
|
294
|
-
|
|
295
325
|
```ruby
|
|
296
326
|
class Wizard
|
|
297
327
|
def cast_spell
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ws-style (6.14.
|
|
4
|
+
ws-style (6.14.4)
|
|
5
5
|
rubocop (>= 1.36)
|
|
6
6
|
rubocop-performance (>= 1.10.2)
|
|
7
7
|
rubocop-rails (>= 2.9.1)
|
|
@@ -11,7 +11,7 @@ PATH
|
|
|
11
11
|
GEM
|
|
12
12
|
remote: https://rubygems.org/
|
|
13
13
|
specs:
|
|
14
|
-
activesupport (7.0.4)
|
|
14
|
+
activesupport (7.0.4.2)
|
|
15
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
16
|
i18n (>= 1.6, < 2)
|
|
17
17
|
minitest (>= 5.1)
|
|
@@ -19,30 +19,30 @@ GEM
|
|
|
19
19
|
addressable (2.8.1)
|
|
20
20
|
public_suffix (>= 2.0.2, < 6.0)
|
|
21
21
|
ast (2.4.2)
|
|
22
|
-
bundler-audit (0.
|
|
22
|
+
bundler-audit (0.9.1)
|
|
23
23
|
bundler (>= 1.2.0, < 3)
|
|
24
|
-
thor (
|
|
25
|
-
concurrent-ruby (1.
|
|
24
|
+
thor (~> 1.0)
|
|
25
|
+
concurrent-ruby (1.2.0)
|
|
26
26
|
diff-lcs (1.5.0)
|
|
27
|
-
git (1.
|
|
27
|
+
git (1.13.1)
|
|
28
28
|
addressable (~> 2.8)
|
|
29
29
|
rchardet (~> 1.8)
|
|
30
30
|
i18n (1.12.0)
|
|
31
31
|
concurrent-ruby (~> 1.0)
|
|
32
|
-
json (2.6.
|
|
33
|
-
|
|
34
|
-
json (~> 2.1)
|
|
35
|
-
thor (~> 0.20)
|
|
36
|
-
minitest (5.16.3)
|
|
32
|
+
json (2.6.3)
|
|
33
|
+
minitest (5.17.0)
|
|
37
34
|
parallel (1.22.1)
|
|
38
|
-
|
|
35
|
+
parse_a_changelog (1.2.0)
|
|
36
|
+
treetop (~> 1.6)
|
|
37
|
+
parser (3.2.0.0)
|
|
39
38
|
ast (~> 2.4.1)
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
polyglot (0.3.5)
|
|
40
|
+
public_suffix (5.0.1)
|
|
41
|
+
rack (3.0.4.1)
|
|
42
42
|
rainbow (3.1.1)
|
|
43
43
|
rake (13.0.6)
|
|
44
44
|
rchardet (1.8.0)
|
|
45
|
-
regexp_parser (2.6.
|
|
45
|
+
regexp_parser (2.6.2)
|
|
46
46
|
rexml (3.2.5)
|
|
47
47
|
rspec (3.12.0)
|
|
48
48
|
rspec-core (~> 3.12.0)
|
|
@@ -50,41 +50,46 @@ GEM
|
|
|
50
50
|
rspec-mocks (~> 3.12.0)
|
|
51
51
|
rspec-core (3.12.0)
|
|
52
52
|
rspec-support (~> 3.12.0)
|
|
53
|
-
rspec-expectations (3.12.
|
|
53
|
+
rspec-expectations (3.12.2)
|
|
54
54
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
55
55
|
rspec-support (~> 3.12.0)
|
|
56
|
-
rspec-mocks (3.12.
|
|
56
|
+
rspec-mocks (3.12.3)
|
|
57
57
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
58
58
|
rspec-support (~> 3.12.0)
|
|
59
59
|
rspec-support (3.12.0)
|
|
60
|
-
rubocop (1.
|
|
60
|
+
rubocop (1.44.1)
|
|
61
61
|
json (~> 2.3)
|
|
62
62
|
parallel (~> 1.10)
|
|
63
|
-
parser (>= 3.
|
|
63
|
+
parser (>= 3.2.0.0)
|
|
64
64
|
rainbow (>= 2.2.2, < 4.0)
|
|
65
65
|
regexp_parser (>= 1.8, < 3.0)
|
|
66
66
|
rexml (>= 3.2.5, < 4.0)
|
|
67
|
-
rubocop-ast (>= 1.
|
|
67
|
+
rubocop-ast (>= 1.24.1, < 2.0)
|
|
68
68
|
ruby-progressbar (~> 1.7)
|
|
69
|
-
unicode-display_width (>=
|
|
70
|
-
rubocop-ast (1.
|
|
69
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
|
70
|
+
rubocop-ast (1.24.1)
|
|
71
71
|
parser (>= 3.1.1.0)
|
|
72
|
-
rubocop-
|
|
72
|
+
rubocop-capybara (2.17.0)
|
|
73
|
+
rubocop (~> 1.41)
|
|
74
|
+
rubocop-performance (1.15.2)
|
|
73
75
|
rubocop (>= 1.7.0, < 2.0)
|
|
74
76
|
rubocop-ast (>= 0.4.0)
|
|
75
|
-
rubocop-rails (2.17.
|
|
77
|
+
rubocop-rails (2.17.4)
|
|
76
78
|
activesupport (>= 4.2.0)
|
|
77
79
|
rack (>= 1.1)
|
|
78
80
|
rubocop (>= 1.33.0, < 2.0)
|
|
79
|
-
rubocop-rspec (2.
|
|
81
|
+
rubocop-rspec (2.18.1)
|
|
80
82
|
rubocop (~> 1.33)
|
|
83
|
+
rubocop-capybara (~> 2.17)
|
|
81
84
|
rubocop-vendor (0.8.10)
|
|
82
85
|
rubocop (>= 0.53.0)
|
|
83
86
|
ruby-progressbar (1.11.0)
|
|
84
|
-
thor (
|
|
85
|
-
|
|
87
|
+
thor (1.2.1)
|
|
88
|
+
treetop (1.6.12)
|
|
89
|
+
polyglot (~> 0.3)
|
|
90
|
+
tzinfo (2.0.6)
|
|
86
91
|
concurrent-ruby (~> 1.0)
|
|
87
|
-
unicode-display_width (2.
|
|
92
|
+
unicode-display_width (2.4.2)
|
|
88
93
|
|
|
89
94
|
PLATFORMS
|
|
90
95
|
ruby
|
|
@@ -93,10 +98,10 @@ DEPENDENCIES
|
|
|
93
98
|
bundler
|
|
94
99
|
bundler-audit
|
|
95
100
|
git
|
|
96
|
-
|
|
101
|
+
parse_a_changelog
|
|
97
102
|
rake
|
|
98
103
|
rspec (~> 3.12.0)
|
|
99
104
|
ws-style!
|
|
100
105
|
|
|
101
106
|
BUNDLED WITH
|
|
102
|
-
2.
|
|
107
|
+
2.4.6
|
data/lib/ws/style/version.rb
CHANGED
data/ws-style.gemspec
CHANGED
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
|
20
20
|
s.bindir = 'exe'
|
|
21
21
|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
22
|
s.require_paths = ['lib']
|
|
23
|
-
s.required_ruby_version = '>= 2.7.
|
|
23
|
+
s.required_ruby_version = '>= 2.7.3'
|
|
24
24
|
|
|
25
25
|
s.add_dependency 'rubocop', '>= 1.36'
|
|
26
26
|
s.add_dependency 'rubocop-performance', '>= 1.10.2'
|
|
@@ -31,7 +31,7 @@ Gem::Specification.new do |s|
|
|
|
31
31
|
s.add_development_dependency 'bundler'
|
|
32
32
|
s.add_development_dependency 'bundler-audit'
|
|
33
33
|
s.add_development_dependency 'git'
|
|
34
|
-
s.add_development_dependency '
|
|
34
|
+
s.add_development_dependency 'parse_a_changelog'
|
|
35
35
|
s.add_development_dependency 'rake'
|
|
36
36
|
s.add_development_dependency 'rspec', '~> 3.12.0'
|
|
37
37
|
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.14.
|
|
4
|
+
version: 6.14.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Graham
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -123,7 +123,7 @@ dependencies:
|
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
125
|
- !ruby/object:Gem::Dependency
|
|
126
|
-
name:
|
|
126
|
+
name: parse_a_changelog
|
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
|
128
128
|
requirements:
|
|
129
129
|
- - ">="
|
|
@@ -179,6 +179,7 @@ files:
|
|
|
179
179
|
- ".gitignore"
|
|
180
180
|
- ".rspec"
|
|
181
181
|
- ".rubocop.yml"
|
|
182
|
+
- ".rubocop_todo.yml"
|
|
182
183
|
- ".ruby-version"
|
|
183
184
|
- CHANGELOG.md
|
|
184
185
|
- Gemfile
|
|
@@ -210,7 +211,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
210
211
|
requirements:
|
|
211
212
|
- - ">="
|
|
212
213
|
- !ruby/object:Gem::Version
|
|
213
|
-
version: 2.7.
|
|
214
|
+
version: 2.7.3
|
|
214
215
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
215
216
|
requirements:
|
|
216
217
|
- - ">="
|