still_active 0.4.0 → 0.4.1

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: ab3c29906ae6ae00be8c2f0a8dddf017e356bddbe1bf6e0a7ed9fcf011765467
4
- data.tar.gz: c9c305028a2d1bcf8f539828eec6ae68d2448b08909ca3821df409aafce43bbb
3
+ metadata.gz: ee30b8e061e74685f513407c59b392fa1cfc921e7012784763f13266c230fcdf
4
+ data.tar.gz: f624f61d7277575ac709ac2a2d28f351749eebbb72c9d6f39eb0566078777dc7
5
5
  SHA512:
6
- metadata.gz: ecab8a4fbd11d64f59261adc5326ea206a111c06e46d3723c0d69c84880dd596a7028b69232c525cc955678a90224f2ac7c3569e4a23a556cdc8db569f1b12ee
7
- data.tar.gz: 1e13d267394f60ed2399d4bc0ca9feaf41dee5f650a1176cf6b5bbe4c038388d9a8ad522ce6042e2eea2c2319787c5701c563f72406430c814b3e54bb848d36b
6
+ metadata.gz: 73c1cb19174263fc3f7df06b66810456193bd7eeaadc2fc9d2b85d56d3081d1d03d923d9ed05eb7b139afca5bfcfa16596fecb060f61de23af62c8d8b67de761
7
+ data.tar.gz: 1d14e63886116b9a4d8fb91e2ec4d745f2528bca461df5183562f6989e03d7a5d4e9c60edc2e02047b5666d5807b2f5386be8c2f844119afd69587459249fd2e
@@ -18,7 +18,7 @@ on:
18
18
  # The branches below must be a subset of the branches above
19
19
  branches: [ master ]
20
20
  schedule:
21
- - cron: '26 18 * * 2'
21
+ - cron: '0 0 1 * *'
22
22
 
23
23
  jobs:
24
24
  analyze:
@@ -1,12 +1,19 @@
1
1
  name: RSpec tests
2
2
 
3
- on: [push,pull_request]
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ # The branches below must be a subset of the branches above
8
+ branches: [ master ]
9
+ schedule:
10
+ - cron: '0 0 1 * *'
4
11
 
5
12
  jobs:
6
13
  test:
7
14
  strategy:
8
15
  matrix:
9
- ruby: [2.7, 3.0, head, truffleruby, truffleruby-head]
16
+ ruby: [2.7, 3.0, 3.1, head, truffleruby, truffleruby-head]
10
17
  runs-on: ubuntu-latest
11
18
  steps:
12
19
  - uses: actions/checkout@v2
@@ -8,7 +8,7 @@ on:
8
8
  # The branches below must be a subset of the branches above
9
9
  branches: [ master ]
10
10
  schedule:
11
- - cron: '37 16 * * 2'
11
+ - cron: '0 0 1 * *'
12
12
 
13
13
  jobs:
14
14
  rubocop:
@@ -25,7 +25,7 @@ jobs:
25
25
  - name: Set up Ruby
26
26
  uses: ruby/setup-ruby@v1
27
27
  with:
28
- ruby-version: 3.0.2
28
+ ruby-version: 3.1.0
29
29
 
30
30
  # This step is not necessary if you add the gem to your Gemfile
31
31
  # - name: Install Code Scanning integration
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## [0.4.1] - 2022-01-01
6
+
7
+ - Explicitly test against ruby 3.1
8
+ - Fix for using ActiveSupport 7
9
+ - schedule running CI once per month
10
+
5
11
  ## [0.4.0] - 2021-11-11
6
12
 
7
13
  - Change minimum version of Ruby to 2.7
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- still_active (0.4.0)
4
+ still_active (0.4.1)
5
5
  activesupport
6
6
  async
7
7
  async-http
@@ -12,12 +12,11 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- activesupport (6.1.4.1)
15
+ activesupport (7.0.1)
16
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
17
17
  i18n (>= 1.6, < 2)
18
18
  minitest (>= 5.1)
19
19
  tzinfo (~> 2.0)
20
- zeitwerk (~> 2.3)
21
20
  addressable (2.8.0)
22
21
  public_suffix (>= 2.0.2, < 5.0)
23
22
  ast (2.4.2)
@@ -39,38 +38,42 @@ GEM
39
38
  code-scanning-rubocop (0.5.0)
40
39
  rubocop (~> 1.0)
41
40
  concurrent-ruby (1.1.9)
42
- console (1.13.1)
41
+ console (1.14.0)
43
42
  fiber-local
44
43
  crack (0.4.5)
45
44
  rexml
46
- dead_end (3.0.1)
47
- debug (1.3.4)
45
+ dead_end (3.1.1)
46
+ debug (1.4.0)
48
47
  irb (>= 1.3.6)
49
48
  reline (>= 0.2.7)
50
49
  descendants_tracker (0.0.4)
51
50
  thread_safe (~> 0.3, >= 0.3.1)
52
- diff-lcs (1.4.4)
51
+ diff-lcs (1.5.0)
53
52
  faker (2.19.0)
54
53
  i18n (>= 1.6, < 2)
55
- faraday (1.8.0)
54
+ faraday (1.9.3)
56
55
  faraday-em_http (~> 1.0)
57
56
  faraday-em_synchrony (~> 1.0)
58
57
  faraday-excon (~> 1.1)
59
- faraday-httpclient (~> 1.0.1)
58
+ faraday-httpclient (~> 1.0)
59
+ faraday-multipart (~> 1.0)
60
60
  faraday-net_http (~> 1.0)
61
- faraday-net_http_persistent (~> 1.1)
61
+ faraday-net_http_persistent (~> 1.0)
62
62
  faraday-patron (~> 1.0)
63
63
  faraday-rack (~> 1.0)
64
- multipart-post (>= 1.2, < 3)
64
+ faraday-retry (~> 1.0)
65
65
  ruby2_keywords (>= 0.0.4)
66
66
  faraday-em_http (1.0.0)
67
67
  faraday-em_synchrony (1.0.0)
68
68
  faraday-excon (1.1.0)
69
69
  faraday-httpclient (1.0.1)
70
+ faraday-multipart (1.0.3)
71
+ multipart-post (>= 1.2, < 3)
70
72
  faraday-net_http (1.0.1)
71
73
  faraday-net_http_persistent (1.2.0)
72
74
  faraday-patron (1.0.0)
73
75
  faraday-rack (1.0.0)
76
+ faraday-retry (1.0.3)
74
77
  fiber-local (1.0.0)
75
78
  gems (1.2.0)
76
79
  github_api (0.19.0)
@@ -81,13 +84,13 @@ GEM
81
84
  oauth2 (~> 1.0)
82
85
  hashdiff (1.0.1)
83
86
  hashie (3.6.0)
84
- i18n (1.8.11)
87
+ i18n (1.9.1)
85
88
  concurrent-ruby (~> 1.0)
86
- io-console (0.5.9)
87
- irb (1.3.7)
88
- reline (>= 0.2.7)
89
+ io-console (0.5.11)
90
+ irb (1.4.1)
91
+ reline (>= 0.3.0)
89
92
  jwt (2.3.0)
90
- minitest (5.14.4)
93
+ minitest (5.15.0)
91
94
  multi_json (1.15.0)
92
95
  multi_xml (0.6.0)
93
96
  multipart-post (2.1.1)
@@ -99,7 +102,7 @@ GEM
99
102
  multi_xml (~> 0.5)
100
103
  rack (>= 1.2, < 3)
101
104
  parallel (1.21.0)
102
- parser (3.0.2.0)
105
+ parser (3.1.0.0)
103
106
  ast (~> 2.4.1)
104
107
  protocol-hpack (1.4.2)
105
108
  protocol-http (0.22.5)
@@ -110,43 +113,43 @@ GEM
110
113
  protocol-http (~> 0.18)
111
114
  public_suffix (4.0.6)
112
115
  rack (2.2.3)
113
- rainbow (3.0.0)
116
+ rainbow (3.1.1)
114
117
  rake (13.0.6)
115
- regexp_parser (2.1.1)
116
- reline (0.2.7)
118
+ regexp_parser (2.2.0)
119
+ reline (0.3.1)
117
120
  io-console (~> 0.5)
118
121
  rexml (3.2.5)
119
122
  rspec (3.10.0)
120
123
  rspec-core (~> 3.10.0)
121
124
  rspec-expectations (~> 3.10.0)
122
125
  rspec-mocks (~> 3.10.0)
123
- rspec-core (3.10.1)
126
+ rspec-core (3.10.2)
124
127
  rspec-support (~> 3.10.0)
125
- rspec-expectations (3.10.1)
128
+ rspec-expectations (3.10.2)
126
129
  diff-lcs (>= 1.2.0, < 2.0)
127
130
  rspec-support (~> 3.10.0)
128
- rspec-mocks (3.10.2)
131
+ rspec-mocks (3.10.3)
129
132
  diff-lcs (>= 1.2.0, < 2.0)
130
133
  rspec-support (~> 3.10.0)
131
134
  rspec-support (3.10.3)
132
- rubocop (1.22.3)
135
+ rubocop (1.25.0)
133
136
  parallel (~> 1.10)
134
- parser (>= 3.0.0.0)
137
+ parser (>= 3.1.0.0)
135
138
  rainbow (>= 2.2.2, < 4.0)
136
139
  regexp_parser (>= 1.8, < 3.0)
137
140
  rexml
138
- rubocop-ast (>= 1.12.0, < 2.0)
141
+ rubocop-ast (>= 1.15.1, < 2.0)
139
142
  ruby-progressbar (~> 1.7)
140
143
  unicode-display_width (>= 1.4.0, < 3.0)
141
- rubocop-ast (1.12.0)
144
+ rubocop-ast (1.15.1)
142
145
  parser (>= 3.0.1.1)
143
- rubocop-performance (1.12.0)
146
+ rubocop-performance (1.13.2)
144
147
  rubocop (>= 1.7.0, < 2.0)
145
148
  rubocop-ast (>= 0.4.0)
146
- rubocop-rspec (2.6.0)
149
+ rubocop-rspec (2.8.0)
147
150
  rubocop (~> 1.19)
148
- rubocop-shopify (2.3.0)
149
- rubocop (~> 1.22)
151
+ rubocop-shopify (2.4.0)
152
+ rubocop (~> 1.24)
150
153
  ruby-progressbar (1.11.0)
151
154
  ruby2_keywords (0.0.5)
152
155
  thread_safe (0.3.6)
@@ -159,7 +162,6 @@ GEM
159
162
  addressable (>= 2.8.0)
160
163
  crack (>= 0.3.2)
161
164
  hashdiff (>= 0.4.0, < 2.0.0)
162
- zeitwerk (2.5.1)
163
165
 
164
166
  PLATFORMS
165
167
  ruby
data/README.md CHANGED
@@ -1,7 +1,13 @@
1
- # StillActive
1
+ # `still_active`
2
2
 
3
3
  Identify which of your dependencies are no longer under active development.
4
4
 
5
+ [![Gem Version](https://badge.fury.io/rb/still_active.svg)](https://badge.fury.io/rb/still_active)
6
+
7
+ ![Code Quality analysis](https://github.com/SeanLF/still_active/actions/workflows/codeql-analysis.yml/badge.svg)
8
+ ![RSpec](https://github.com/SeanLF/still_active/actions/workflows/rspec.yml/badge.svg)
9
+ ![Rubocop analysis](https://github.com/SeanLF/still_active/actions/workflows/rubocop-analysis.yml/badge.svg)
10
+
5
11
  ## Installation
6
12
 
7
13
  ```bash
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "active_support/isolated_execution_state"
3
4
  require "active_support/core_ext/integer/time"
4
5
 
5
6
  module StillActive
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module StillActive
4
- VERSION = "0.4.0"
4
+ VERSION = "0.4.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: still_active
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean Floyd
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-11 00:00:00.000000000 Z
11
+ date: 2022-02-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dead_end
@@ -252,7 +252,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
252
252
  - !ruby/object:Gem::Version
253
253
  version: '0'
254
254
  requirements: []
255
- rubygems_version: 3.2.31
255
+ rubygems_version: 3.3.5
256
256
  signing_key:
257
257
  specification_version: 4
258
258
  summary: Check if gems are under active development.