ws-style 6.13.4 → 6.13.8

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: 882552ea53aa5ddea18cd1e1df2989a2ad8b4c080ffc90a4c73c297f02d181a0
4
+ data.tar.gz: ac9854f8a11760196f910ec9624954df8bf57df07a9995f7943ce1109b6cc3a5
5
5
  SHA512:
6
- metadata.gz: 7ea972a876b0555ee61b84fb890adb2267d59a6f150b925cf8c3c58877a19ced4c491be6f9fd4c46dd52481e8897cde752fa22724a6b192f85c1b32852545cf3
7
- data.tar.gz: b19a16ce33d4f4bb60a83823658a313140bffd175d489a075c5b0d847c573402835c1a1ba682e1a3402b262f252e3bd631a7c845335e9d30a548c0a0abb1ee36
6
+ metadata.gz: a4014642f74212f06db0f6d491a579b443cce5395d3c378600b5036dabef1213ff70e3568df9a5c9ba0066ce765ac4e941d0f165bf3aa4ea06e30256b51f07a4
7
+ data.tar.gz: abb7a69317459504a369368e80e691590b1b0be71761853daa5395a0fffb35ab6341967be3286e083ed9959f3bbf1c0c7fbc781cf311bf5aaf50ce964143c498
@@ -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,40 @@ 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.8 - 2022-02-10
8
+ ### Changed
9
+ - Updated rspec dependencies
10
+
11
+ ## 6.13.7 - 2022-02-07
12
+ ### Changed
13
+ - Updated dependencies
14
+
15
+ ## 6.13.6 - 2022-01-31
16
+ ### Changed
17
+ - Updated dependencies
18
+
19
+ ## 6.13.5 - 2022-01-24
20
+ ### Changed
21
+ - Updated dependencies
22
+ - Bumped Ruby to 2.7.5
23
+
24
+ ## 6.13.4 - 2022-01-17
8
25
  ### Changed
9
26
  - Updated dependencies
10
27
 
11
- ## 6.13.3 - 2021-01-10
28
+ ## 6.13.3 - 2022-01-10
12
29
  ### Changed
13
30
  - Disable Rails/RedundantPresenceValidationOnBelongsTo as it can generate unsafe autocorrections
14
31
 
15
- ## 6.13.2 - 2021-01-10
32
+ ## 6.13.2 - 2022-01-10
16
33
  ### Changed
17
34
  - Update rubocop-rails to 2.13.1
18
35
 
19
- ## 6.13.1 - 2021-01-07
36
+ ## 6.13.1 - 2022-01-07
20
37
  ### Changed
21
38
  - Disable ruby 3.1 Hash shorthand syntax
22
39
 
23
- ## 6.13.0 - 2021-01-04
40
+ ## 6.13.0 - 2022-01-04
24
41
  ### Changed
25
42
  - Updated rubocop to 1.24.1 and opted into new cops
26
43
 
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.8)
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.8.11)
27
+ i18n (1.9.1)
28
28
  concurrent-ruby (~> 1.0)
29
29
  json (2.6.1)
30
30
  keepachangelog (0.6.1)
@@ -40,22 +40,22 @@ GEM
40
40
  rchardet (1.8.0)
41
41
  regexp_parser (2.2.0)
42
42
  rexml (3.2.5)
43
- rspec (3.10.0)
44
- rspec-core (~> 3.10.0)
45
- rspec-expectations (~> 3.10.0)
46
- rspec-mocks (~> 3.10.0)
47
- rspec-core (3.10.1)
48
- rspec-support (~> 3.10.0)
49
- rspec-expectations (3.10.2)
43
+ rspec (3.11.0)
44
+ rspec-core (~> 3.11.0)
45
+ rspec-expectations (~> 3.11.0)
46
+ rspec-mocks (~> 3.11.0)
47
+ rspec-core (3.11.0)
48
+ rspec-support (~> 3.11.0)
49
+ rspec-expectations (3.11.0)
50
50
  diff-lcs (>= 1.2.0, < 2.0)
51
- rspec-support (~> 3.10.0)
52
- rspec-mocks (3.10.2)
51
+ rspec-support (~> 3.11.0)
52
+ rspec-mocks (3.11.0)
53
53
  diff-lcs (>= 1.2.0, < 2.0)
54
- rspec-support (~> 3.10.0)
55
- rspec-support (3.10.3)
56
- rubocop (1.24.1)
54
+ rspec-support (~> 3.11.0)
55
+ rspec-support (3.11.0)
56
+ rubocop (1.25.1)
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,9 +71,9 @@ 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
- rubocop-vendor (0.8.0)
76
+ rubocop-vendor (0.8.1)
77
77
  rubocop (>= 0.53.0)
78
78
  ruby-progressbar (1.11.0)
79
79
  thor (0.20.3)
@@ -90,7 +90,7 @@ DEPENDENCIES
90
90
  git
91
91
  keepachangelog
92
92
  rake
93
- rspec (~> 3.10.0)
93
+ rspec (~> 3.11.0)
94
94
  ws-style!
95
95
 
96
96
  BUNDLED WITH
@@ -1,5 +1,5 @@
1
1
  module Ws
2
2
  module Style
3
- VERSION = '6.13.4'.freeze
3
+ VERSION = '6.13.8'.freeze
4
4
  end
5
5
  end
data/ws-style.gemspec CHANGED
@@ -33,5 +33,5 @@ Gem::Specification.new do |s|
33
33
  s.add_development_dependency 'git'
34
34
  s.add_development_dependency 'keepachangelog'
35
35
  s.add_development_dependency 'rake'
36
- s.add_development_dependency 'rspec', '~> 3.10.0'
36
+ s.add_development_dependency 'rspec', '~> 3.11.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.13.4
4
+ version: 6.13.8
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-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -156,14 +156,14 @@ dependencies:
156
156
  requirements:
157
157
  - - "~>"
158
158
  - !ruby/object:Gem::Version
159
- version: 3.10.0
159
+ version: 3.11.0
160
160
  type: :development
161
161
  prerelease: false
162
162
  version_requirements: !ruby/object:Gem::Requirement
163
163
  requirements:
164
164
  - - "~>"
165
165
  - !ruby/object:Gem::Version
166
- version: 3.10.0
166
+ version: 3.11.0
167
167
  description: Shared config to enforce Ruby style consistently across Wealthsimple
168
168
  services.
169
169
  email:
@@ -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"