ws-style 6.13.4 → 6.13.5

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: ee0d1eb2530d32f22ee007dec60a57089cba4cba87dd10e8ff05764827d87da6
4
- data.tar.gz: 2d8242d260e17d1051aeb3cf77fe0420fd467457520781062ef0e327113a12fb
3
+ metadata.gz: 037da84be2b394b42f7ad88871b02616ead95249969e4d0c4d0d0af3ffca0324
4
+ data.tar.gz: ed3dcd4123ac5a41cd376c80358aa56a59f4875855bb1b2d076ed45030fbb083
5
5
  SHA512:
6
- metadata.gz: 7ea972a876b0555ee61b84fb890adb2267d59a6f150b925cf8c3c58877a19ced4c491be6f9fd4c46dd52481e8897cde752fa22724a6b192f85c1b32852545cf3
7
- data.tar.gz: b19a16ce33d4f4bb60a83823658a313140bffd175d489a075c5b0d847c573402835c1a1ba682e1a3402b262f252e3bd631a7c845335e9d30a548c0a0abb1ee36
6
+ metadata.gz: d28945eeb98cb66250931b1ee37ea113c62fb028db8d115349a9373917cbef8cec2bd2474f43c2f55ef5b999a639c0bc05cdaef262abda59cd79633ca9c3af95
7
+ data.tar.gz: 6b8610ef7b20cb00d61c3b25c386973c5afed4dac39867561e59a48f72bc31ec4b918d95af29203e88985e13c40c22472c31353c360c38661dcb42b5fc18350f
@@ -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.4
1
+ 2.7.5
data/CHANGELOG.md CHANGED
@@ -4,23 +4,28 @@ 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.4 - 2021-01-17
7
+ ## 6.13.5 - 2022-01-24
8
8
  ### Changed
9
9
  - Updated dependencies
10
+ - Bumped Ruby to 2.7.5
10
11
 
11
- ## 6.13.3 - 2021-01-10
12
+ ## 6.13.4 - 2022-01-17
13
+ ### Changed
14
+ - Updated dependencies
15
+
16
+ ## 6.13.3 - 2022-01-10
12
17
  ### Changed
13
18
  - Disable Rails/RedundantPresenceValidationOnBelongsTo as it can generate unsafe autocorrections
14
19
 
15
- ## 6.13.2 - 2021-01-10
20
+ ## 6.13.2 - 2022-01-10
16
21
  ### Changed
17
22
  - Update rubocop-rails to 2.13.1
18
23
 
19
- ## 6.13.1 - 2021-01-07
24
+ ## 6.13.1 - 2022-01-07
20
25
  ### Changed
21
26
  - Disable ruby 3.1 Hash shorthand syntax
22
27
 
23
- ## 6.13.0 - 2021-01-04
28
+ ## 6.13.0 - 2022-01-04
24
29
  ### Changed
25
30
  - Updated rubocop to 1.24.1 and opted into new cops
26
31
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ws-style (6.13.4)
4
+ ws-style (6.13.5)
5
5
  rubocop (>= 1.23)
6
6
  rubocop-performance (>= 1.10.2)
7
7
  rubocop-rails (>= 2.9.1)
@@ -53,9 +53,9 @@ GEM
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.24.1)
56
+ rubocop (1.25.0)
57
57
  parallel (~> 1.10)
58
- parser (>= 3.0.0.0)
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
@@ -71,7 +71,7 @@ GEM
71
71
  activesupport (>= 4.2.0)
72
72
  rack (>= 1.1)
73
73
  rubocop (>= 1.7.0, < 2.0)
74
- rubocop-rspec (2.7.0)
74
+ rubocop-rspec (2.8.0)
75
75
  rubocop (~> 1.19)
76
76
  rubocop-vendor (0.8.0)
77
77
  rubocop (>= 0.53.0)
@@ -1,5 +1,5 @@
1
1
  module Ws
2
2
  module Style
3
- VERSION = '6.13.4'.freeze
3
+ VERSION = '6.13.5'.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.13.4
4
+ version: 6.13.5
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-17 00:00:00.000000000 Z
11
+ date: 2022-01-24 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"