ws-style 6.0.3 → 6.0.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/CHANGELOG.md +4 -0
- data/default.yml +25 -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: 2955628c06e002b018ec8451e9d1fcfd43f0a22501383d341771b7ac373ed6cf
|
|
4
|
+
data.tar.gz: e49723abec5f8fdb46b9fcd1c786e593395faefcc9ce156e0a9ba5414367fea6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 196fd3b83a83c57e58f749563b68dcda67a1186bff5a60e7316236ca5090fe5d11d6ceb6aef06db8b49660310236e1f79eef0c849f02403cda9f2e6e6387674d
|
|
7
|
+
data.tar.gz: 34edfec89865b890b42065eca5c60c3449bded522d7405dfcdb8f3adbfc87ab527302f6918f3f7b9ec1c0a25fcc508b4b13fb7f9b6a942f55da96a7b748a0a3c
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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.0.4 - 2020-07-06
|
|
8
|
+
### Changed
|
|
9
|
+
- Upgraded rubocop to >= 0.86 and opted into the new cops.
|
|
10
|
+
|
|
7
11
|
## 6.0.1 - 2020-05-06
|
|
8
12
|
### Changed
|
|
9
13
|
- Don't enforce Style/FormatStringToken. We use template style strings heavily, and don't feel that annotated strings are a necessary improvement.
|
data/default.yml
CHANGED
|
@@ -202,3 +202,28 @@ Layout/SpaceAroundMethodCallOperator:
|
|
|
202
202
|
|
|
203
203
|
Style/ExponentialNotation:
|
|
204
204
|
Enabled: true
|
|
205
|
+
|
|
206
|
+
# 0.83
|
|
207
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
|
208
|
+
Enabled: True
|
|
209
|
+
|
|
210
|
+
Style/SlicingWithRange:
|
|
211
|
+
Enabled: True
|
|
212
|
+
|
|
213
|
+
# 0.84
|
|
214
|
+
Lint/DeprecatedOpenSSLConstant:
|
|
215
|
+
Enabled: True
|
|
216
|
+
|
|
217
|
+
# 0.85
|
|
218
|
+
Lint/MixedRegexpCaptureTypes:
|
|
219
|
+
Enabled: True
|
|
220
|
+
|
|
221
|
+
Style/RedundantRegexpCharacterClass:
|
|
222
|
+
Enabled: True
|
|
223
|
+
|
|
224
|
+
Style/RedundantRegexpEscape:
|
|
225
|
+
Enabled: True
|
|
226
|
+
|
|
227
|
+
# 0.86
|
|
228
|
+
Style/RedundantFetchBlock:
|
|
229
|
+
Enabled: True
|
data/lib/ws/style/version.rb
CHANGED
data/ws-style.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
|
|
|
21
21
|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
22
22
|
s.require_paths = ['lib']
|
|
23
23
|
|
|
24
|
-
s.add_dependency 'rubocop', '>= 0.
|
|
24
|
+
s.add_dependency 'rubocop', '>= 0.86'
|
|
25
25
|
s.add_dependency 'rubocop-performance', '>= 1.1.0'
|
|
26
26
|
s.add_dependency 'rubocop-rails', '>= 2.4.2'
|
|
27
27
|
s.add_dependency 'rubocop-rspec', '~> 1.32'
|
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.0.
|
|
4
|
+
version: 6.0.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: 2020-
|
|
11
|
+
date: 2020-07-06 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: '0.
|
|
19
|
+
version: '0.86'
|
|
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: '0.
|
|
26
|
+
version: '0.86'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: rubocop-performance
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|