ws-style 6.13.2 → 6.13.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/stale.yml +20 -0
- data/.ruby-version +1 -1
- data/CHANGELOG.md +20 -3
- data/Gemfile.lock +11 -11
- data/core.yml +1 -1
- data/lib/ws/style/version.rb +1 -1
- data/rails.yml +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8170be12629eb5298e525ef78e30eabe1d45c96fd731a97bdad03fcfc00eaef8
|
4
|
+
data.tar.gz: 5340febadf8f75a0a3317be44bdde13cf8672b3c4f3e451d0c86cb388b2c45e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d0f7f1a3b8a549bc273460beea06b611459e1b7930a136a82d6c1f5c8e071a2df590c2157f5ae82faa85db5ee65107040819fe7faa8b5609fbe4dc422f166bfd
|
7
|
+
data.tar.gz: 24a9d104b11f84e9bdebce44330cba5370e281589f2ef914481d2e21cd1a61b7fc589b886eda0ff9024c4fd17e67c94987cf88883e1d5343e87be2a5cfee764d
|
@@ -0,0 +1,20 @@
|
|
1
|
+
name: 'Close stale PRs'
|
2
|
+
on:
|
3
|
+
schedule:
|
4
|
+
- cron: '30 6 * * *' # 6:30 am UTC: 1:30 am EST
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
stale:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- uses: actions/stale@v4
|
11
|
+
with:
|
12
|
+
days-before-stale: 30
|
13
|
+
days-before-close: 60
|
14
|
+
stale-pr-message: >
|
15
|
+
This issue has been automatically marked as stale because it has not had
|
16
|
+
recent activity. It will be closed if no further activity occurs.
|
17
|
+
close-pr-message: >
|
18
|
+
This issue has been automatically closed because it has had no activity
|
19
|
+
for over 90 days. Please re-open if you feel this was done in error.
|
20
|
+
exempt-pr-labels: 'dependabot,depfu,dependencies,security'
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.7.
|
1
|
+
2.7.5
|
data/CHANGELOG.md
CHANGED
@@ -4,15 +4,32 @@ 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.13.
|
7
|
+
## 6.13.6 - 2022-01-31
|
8
|
+
### Changed
|
9
|
+
- Updated dependencies
|
10
|
+
|
11
|
+
## 6.13.5 - 2022-01-24
|
12
|
+
### Changed
|
13
|
+
- Updated dependencies
|
14
|
+
- Bumped Ruby to 2.7.5
|
15
|
+
|
16
|
+
## 6.13.4 - 2022-01-17
|
17
|
+
### Changed
|
18
|
+
- Updated dependencies
|
19
|
+
|
20
|
+
## 6.13.3 - 2022-01-10
|
21
|
+
### Changed
|
22
|
+
- Disable Rails/RedundantPresenceValidationOnBelongsTo as it can generate unsafe autocorrections
|
23
|
+
|
24
|
+
## 6.13.2 - 2022-01-10
|
8
25
|
### Changed
|
9
26
|
- Update rubocop-rails to 2.13.1
|
10
27
|
|
11
|
-
## 6.13.1 -
|
28
|
+
## 6.13.1 - 2022-01-07
|
12
29
|
### Changed
|
13
30
|
- Disable ruby 3.1 Hash shorthand syntax
|
14
31
|
|
15
|
-
## 6.13.0 -
|
32
|
+
## 6.13.0 - 2022-01-04
|
16
33
|
### Changed
|
17
34
|
- Updated rubocop to 1.24.1 and opted into new cops
|
18
35
|
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
ws-style (6.13.
|
4
|
+
ws-style (6.13.6)
|
5
5
|
rubocop (>= 1.23)
|
6
6
|
rubocop-performance (>= 1.10.2)
|
7
7
|
rubocop-rails (>= 2.9.1)
|
@@ -24,7 +24,7 @@ GEM
|
|
24
24
|
diff-lcs (1.5.0)
|
25
25
|
git (1.10.2)
|
26
26
|
rchardet (~> 1.8)
|
27
|
-
i18n (1.
|
27
|
+
i18n (1.9.1)
|
28
28
|
concurrent-ruby (~> 1.0)
|
29
29
|
json (2.6.1)
|
30
30
|
keepachangelog (0.6.1)
|
@@ -35,7 +35,7 @@ GEM
|
|
35
35
|
parser (3.1.0.0)
|
36
36
|
ast (~> 2.4.1)
|
37
37
|
rack (2.2.3)
|
38
|
-
rainbow (3.
|
38
|
+
rainbow (3.1.1)
|
39
39
|
rake (13.0.6)
|
40
40
|
rchardet (1.8.0)
|
41
41
|
regexp_parser (2.2.0)
|
@@ -44,18 +44,18 @@ GEM
|
|
44
44
|
rspec-core (~> 3.10.0)
|
45
45
|
rspec-expectations (~> 3.10.0)
|
46
46
|
rspec-mocks (~> 3.10.0)
|
47
|
-
rspec-core (3.10.
|
47
|
+
rspec-core (3.10.2)
|
48
48
|
rspec-support (~> 3.10.0)
|
49
|
-
rspec-expectations (3.10.
|
49
|
+
rspec-expectations (3.10.2)
|
50
50
|
diff-lcs (>= 1.2.0, < 2.0)
|
51
51
|
rspec-support (~> 3.10.0)
|
52
|
-
rspec-mocks (3.10.
|
52
|
+
rspec-mocks (3.10.3)
|
53
53
|
diff-lcs (>= 1.2.0, < 2.0)
|
54
54
|
rspec-support (~> 3.10.0)
|
55
55
|
rspec-support (3.10.3)
|
56
|
-
rubocop (1.
|
56
|
+
rubocop (1.25.0)
|
57
57
|
parallel (~> 1.10)
|
58
|
-
parser (>= 3.
|
58
|
+
parser (>= 3.1.0.0)
|
59
59
|
rainbow (>= 2.2.2, < 4.0)
|
60
60
|
regexp_parser (>= 1.8, < 3.0)
|
61
61
|
rexml
|
@@ -64,14 +64,14 @@ GEM
|
|
64
64
|
unicode-display_width (>= 1.4.0, < 3.0)
|
65
65
|
rubocop-ast (1.15.1)
|
66
66
|
parser (>= 3.0.1.1)
|
67
|
-
rubocop-performance (1.13.
|
67
|
+
rubocop-performance (1.13.2)
|
68
68
|
rubocop (>= 1.7.0, < 2.0)
|
69
69
|
rubocop-ast (>= 0.4.0)
|
70
|
-
rubocop-rails (2.13.
|
70
|
+
rubocop-rails (2.13.2)
|
71
71
|
activesupport (>= 4.2.0)
|
72
72
|
rack (>= 1.1)
|
73
73
|
rubocop (>= 1.7.0, < 2.0)
|
74
|
-
rubocop-rspec (2.
|
74
|
+
rubocop-rspec (2.8.0)
|
75
75
|
rubocop (~> 1.19)
|
76
76
|
rubocop-vendor (0.8.0)
|
77
77
|
rubocop (>= 0.53.0)
|
data/core.yml
CHANGED
data/lib/ws/style/version.rb
CHANGED
data/rails.yml
CHANGED
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.13.
|
4
|
+
version: 6.13.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Graham
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -175,6 +175,7 @@ files:
|
|
175
175
|
- ".github/CODEOWNERS"
|
176
176
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
177
177
|
- ".github/workflows/pipeline.yml"
|
178
|
+
- ".github/workflows/stale.yml"
|
178
179
|
- ".gitignore"
|
179
180
|
- ".rspec"
|
180
181
|
- ".rubocop.yml"
|