still_active 0.1.0 → 0.4.0
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/.github/workflows/codeql-analysis.yml +70 -0
- data/.github/workflows/rspec.yml +19 -0
- data/.github/workflows/rubocop-analysis.yml +47 -0
- data/.rspec +3 -0
- data/.rubocop.yml +11 -0
- data/CHANGELOG.md +28 -1
- data/Gemfile +4 -1
- data/Gemfile.lock +64 -2
- data/README.md +20 -14
- data/bin/console +0 -2
- data/fixtures/vcr_cassettes/gems.yml +2697 -0
- data/lib/helpers/bundler_helper.rb +2 -2
- data/lib/helpers/emoji_helper.rb +14 -14
- data/lib/helpers/markdown_helper.rb +2 -2
- data/lib/helpers/version_helper.rb +7 -3
- data/lib/still_active/cli.rb +4 -5
- data/lib/still_active/config.rb +4 -6
- data/lib/still_active/options.rb +11 -8
- data/lib/still_active/repository.rb +4 -1
- data/lib/still_active/version.rb +1 -1
- data/lib/still_active/workflow.rb +19 -27
- data/still_active.gemspec +9 -3
- metadata +110 -9
- data/.github/workflows/main.yml +0 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ab3c29906ae6ae00be8c2f0a8dddf017e356bddbe1bf6e0a7ed9fcf011765467
|
4
|
+
data.tar.gz: c9c305028a2d1bcf8f539828eec6ae68d2448b08909ca3821df409aafce43bbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecab8a4fbd11d64f59261adc5326ea206a111c06e46d3723c0d69c84880dd596a7028b69232c525cc955678a90224f2ac7c3569e4a23a556cdc8db569f1b12ee
|
7
|
+
data.tar.gz: 1e13d267394f60ed2399d4bc0ca9feaf41dee5f650a1176cf6b5bbe4c038388d9a8ad522ce6042e2eea2c2319787c5701c563f72406430c814b3e54bb848d36b
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# For most projects, this workflow file will not need changing; you simply need
|
2
|
+
# to commit it to your repository.
|
3
|
+
#
|
4
|
+
# You may wish to alter this file to override the set of languages analyzed,
|
5
|
+
# or to provide custom queries or build logic.
|
6
|
+
#
|
7
|
+
# ******** NOTE ********
|
8
|
+
# We have attempted to detect the languages in your repository. Please check
|
9
|
+
# the `language` matrix defined below to confirm you have the correct set of
|
10
|
+
# supported CodeQL languages.
|
11
|
+
#
|
12
|
+
name: "CodeQL"
|
13
|
+
|
14
|
+
on:
|
15
|
+
push:
|
16
|
+
branches: [ master ]
|
17
|
+
pull_request:
|
18
|
+
# The branches below must be a subset of the branches above
|
19
|
+
branches: [ master ]
|
20
|
+
schedule:
|
21
|
+
- cron: '26 18 * * 2'
|
22
|
+
|
23
|
+
jobs:
|
24
|
+
analyze:
|
25
|
+
name: Analyze
|
26
|
+
runs-on: ubuntu-latest
|
27
|
+
permissions:
|
28
|
+
actions: read
|
29
|
+
contents: read
|
30
|
+
security-events: write
|
31
|
+
|
32
|
+
strategy:
|
33
|
+
fail-fast: false
|
34
|
+
matrix:
|
35
|
+
language: [ 'ruby' ]
|
36
|
+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
37
|
+
# Learn more about CodeQL language support at https://git.io/codeql-language-support
|
38
|
+
|
39
|
+
steps:
|
40
|
+
- name: Checkout repository
|
41
|
+
uses: actions/checkout@v2
|
42
|
+
|
43
|
+
# Initializes the CodeQL tools for scanning.
|
44
|
+
- name: Initialize CodeQL
|
45
|
+
uses: github/codeql-action/init@v1
|
46
|
+
with:
|
47
|
+
languages: ${{ matrix.language }}
|
48
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
49
|
+
# By default, queries listed here will override any specified in a config file.
|
50
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
51
|
+
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
52
|
+
|
53
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
54
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
55
|
+
- name: Autobuild
|
56
|
+
uses: github/codeql-action/autobuild@v1
|
57
|
+
|
58
|
+
# ℹ️ Command-line programs to run using the OS shell.
|
59
|
+
# 📚 https://git.io/JvXDl
|
60
|
+
|
61
|
+
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
62
|
+
# and modify them (or add more) to build your code if your project
|
63
|
+
# uses a compiled language
|
64
|
+
|
65
|
+
#- run: |
|
66
|
+
# make bootstrap
|
67
|
+
# make release
|
68
|
+
|
69
|
+
- name: Perform CodeQL Analysis
|
70
|
+
uses: github/codeql-action/analyze@v1
|
@@ -0,0 +1,19 @@
|
|
1
|
+
name: RSpec tests
|
2
|
+
|
3
|
+
on: [push,pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
test:
|
7
|
+
strategy:
|
8
|
+
matrix:
|
9
|
+
ruby: [2.7, 3.0, head, truffleruby, truffleruby-head]
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v2
|
13
|
+
- name: Set up Ruby
|
14
|
+
uses: ruby/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: ${{ matrix.ruby }}
|
17
|
+
bundler-cache: true
|
18
|
+
- name: Execute the tests
|
19
|
+
run: bundle exec rspec
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# pulled from repo
|
2
|
+
name: "Rubocop"
|
3
|
+
|
4
|
+
on:
|
5
|
+
push:
|
6
|
+
branches: [ master ]
|
7
|
+
pull_request:
|
8
|
+
# The branches below must be a subset of the branches above
|
9
|
+
branches: [ master ]
|
10
|
+
schedule:
|
11
|
+
- cron: '37 16 * * 2'
|
12
|
+
|
13
|
+
jobs:
|
14
|
+
rubocop:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
strategy:
|
17
|
+
fail-fast: false
|
18
|
+
|
19
|
+
steps:
|
20
|
+
- name: Checkout repository
|
21
|
+
uses: actions/checkout@v2
|
22
|
+
|
23
|
+
# If running on a self-hosted runner, check it meets the requirements
|
24
|
+
# listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners
|
25
|
+
- name: Set up Ruby
|
26
|
+
uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
ruby-version: 3.0.2
|
29
|
+
|
30
|
+
# This step is not necessary if you add the gem to your Gemfile
|
31
|
+
# - name: Install Code Scanning integration
|
32
|
+
# run: bundle add code-scanning-rubocop --version 0.3.0 --skip-install
|
33
|
+
|
34
|
+
- name: Install dependencies
|
35
|
+
run: bundle install
|
36
|
+
|
37
|
+
- name: Rubocop run
|
38
|
+
run: |
|
39
|
+
bash -c "
|
40
|
+
bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif
|
41
|
+
[[ $? -ne 2 ]]
|
42
|
+
"
|
43
|
+
|
44
|
+
- name: Upload Sarif output
|
45
|
+
uses: github/codeql-action/upload-sarif@v1
|
46
|
+
with:
|
47
|
+
sarif_file: rubocop.sarif
|
data/.rspec
CHANGED
data/.rubocop.yml
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
+
require:
|
2
|
+
- rubocop-performance
|
3
|
+
- rubocop-rspec
|
4
|
+
|
1
5
|
AllCops:
|
6
|
+
NewCops: enable
|
2
7
|
TargetRubyVersion: 3.0.2
|
3
8
|
|
4
9
|
inherit_gem:
|
@@ -6,3 +11,9 @@ inherit_gem:
|
|
6
11
|
|
7
12
|
Layout/LineLength:
|
8
13
|
Enabled: false
|
14
|
+
|
15
|
+
RSpec/ExampleLength:
|
16
|
+
Enabled: false
|
17
|
+
|
18
|
+
RSpec/NestedGroups:
|
19
|
+
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,31 @@
|
|
1
|
-
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## Unreleased
|
4
|
+
|
5
|
+
## [0.4.0] - 2021-11-11
|
6
|
+
|
7
|
+
- Change minimum version of Ruby to 2.7
|
8
|
+
|
9
|
+
## [0.3.0] - 2021-11-11
|
10
|
+
|
11
|
+
- Change `safe_range_end` to `no_warning_range_end`
|
12
|
+
- Fixes for Ruby 2.6 and 2.7
|
13
|
+
|
14
|
+
## [0.2.0] - 2021-11-11
|
15
|
+
|
16
|
+
- Add `simultaneous-requests` command line parameter (and config option) to specify the maximum number of simultaneous requests
|
17
|
+
|
18
|
+
## [0.1.1] - 2021-11-06
|
19
|
+
|
20
|
+
- Remove `safe_range_start` command line parameter
|
21
|
+
- Remove `warning_range_start` command line parameter
|
22
|
+
|
23
|
+
- Fix bugs
|
24
|
+
- use `last_commit_date` rather than `version_used_release_date` to determine the inactive gem emoji
|
25
|
+
- use configured values when determining which emoji to output for the inactive gem emoji
|
26
|
+
- use configured values when determining which emoji to output for the using latest version emoji
|
27
|
+
- the values for `using_latest_version_emoji` and `inactive_repository_emoji` were reversed in the markdown output
|
28
|
+
- `NoMethodError` could be raised `VersionHelper#find_version` when versions was nil
|
2
29
|
|
3
30
|
## [0.1.0] - 2021-11-06
|
4
31
|
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,14 +1,23 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
still_active (0.
|
4
|
+
still_active (0.4.0)
|
5
|
+
activesupport
|
5
6
|
async
|
7
|
+
async-http
|
8
|
+
bundler (>= 2.0)
|
6
9
|
gems
|
7
10
|
github_api
|
8
11
|
|
9
12
|
GEM
|
10
13
|
remote: https://rubygems.org/
|
11
14
|
specs:
|
15
|
+
activesupport (6.1.4.1)
|
16
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
17
|
+
i18n (>= 1.6, < 2)
|
18
|
+
minitest (>= 5.1)
|
19
|
+
tzinfo (~> 2.0)
|
20
|
+
zeitwerk (~> 2.3)
|
12
21
|
addressable (2.8.0)
|
13
22
|
public_suffix (>= 2.0.2, < 5.0)
|
14
23
|
ast (2.4.2)
|
@@ -16,14 +25,33 @@ GEM
|
|
16
25
|
console (~> 1.10)
|
17
26
|
nio4r (~> 2.3)
|
18
27
|
timers (~> 4.1)
|
28
|
+
async-http (0.56.5)
|
29
|
+
async (>= 1.25)
|
30
|
+
async-io (>= 1.28)
|
31
|
+
async-pool (>= 0.2)
|
32
|
+
protocol-http (~> 0.22.0)
|
33
|
+
protocol-http1 (~> 0.14.0)
|
34
|
+
protocol-http2 (~> 0.14.0)
|
35
|
+
async-io (1.32.2)
|
36
|
+
async
|
37
|
+
async-pool (0.3.9)
|
38
|
+
async (>= 1.25)
|
39
|
+
code-scanning-rubocop (0.5.0)
|
40
|
+
rubocop (~> 1.0)
|
41
|
+
concurrent-ruby (1.1.9)
|
19
42
|
console (1.13.1)
|
20
43
|
fiber-local
|
44
|
+
crack (0.4.5)
|
45
|
+
rexml
|
46
|
+
dead_end (3.0.1)
|
21
47
|
debug (1.3.4)
|
22
48
|
irb (>= 1.3.6)
|
23
49
|
reline (>= 0.2.7)
|
24
50
|
descendants_tracker (0.0.4)
|
25
51
|
thread_safe (~> 0.3, >= 0.3.1)
|
26
52
|
diff-lcs (1.4.4)
|
53
|
+
faker (2.19.0)
|
54
|
+
i18n (>= 1.6, < 2)
|
27
55
|
faraday (1.8.0)
|
28
56
|
faraday-em_http (~> 1.0)
|
29
57
|
faraday-em_synchrony (~> 1.0)
|
@@ -51,11 +79,15 @@ GEM
|
|
51
79
|
faraday (>= 0.8, < 2)
|
52
80
|
hashie (~> 3.5, >= 3.5.2)
|
53
81
|
oauth2 (~> 1.0)
|
82
|
+
hashdiff (1.0.1)
|
54
83
|
hashie (3.6.0)
|
84
|
+
i18n (1.8.11)
|
85
|
+
concurrent-ruby (~> 1.0)
|
55
86
|
io-console (0.5.9)
|
56
87
|
irb (1.3.7)
|
57
88
|
reline (>= 0.2.7)
|
58
89
|
jwt (2.3.0)
|
90
|
+
minitest (5.14.4)
|
59
91
|
multi_json (1.15.0)
|
60
92
|
multi_xml (0.6.0)
|
61
93
|
multipart-post (2.1.1)
|
@@ -69,6 +101,13 @@ GEM
|
|
69
101
|
parallel (1.21.0)
|
70
102
|
parser (3.0.2.0)
|
71
103
|
ast (~> 2.4.1)
|
104
|
+
protocol-hpack (1.4.2)
|
105
|
+
protocol-http (0.22.5)
|
106
|
+
protocol-http1 (0.14.2)
|
107
|
+
protocol-http (~> 0.22)
|
108
|
+
protocol-http2 (0.14.2)
|
109
|
+
protocol-hpack (~> 1.4)
|
110
|
+
protocol-http (~> 0.18)
|
72
111
|
public_suffix (4.0.6)
|
73
112
|
rack (2.2.3)
|
74
113
|
rainbow (3.0.0)
|
@@ -101,24 +140,47 @@ GEM
|
|
101
140
|
unicode-display_width (>= 1.4.0, < 3.0)
|
102
141
|
rubocop-ast (1.12.0)
|
103
142
|
parser (>= 3.0.1.1)
|
143
|
+
rubocop-performance (1.12.0)
|
144
|
+
rubocop (>= 1.7.0, < 2.0)
|
145
|
+
rubocop-ast (>= 0.4.0)
|
146
|
+
rubocop-rspec (2.6.0)
|
147
|
+
rubocop (~> 1.19)
|
104
148
|
rubocop-shopify (2.3.0)
|
105
149
|
rubocop (~> 1.22)
|
106
150
|
ruby-progressbar (1.11.0)
|
107
151
|
ruby2_keywords (0.0.5)
|
108
152
|
thread_safe (0.3.6)
|
109
153
|
timers (4.3.3)
|
154
|
+
tzinfo (2.0.4)
|
155
|
+
concurrent-ruby (~> 1.0)
|
110
156
|
unicode-display_width (2.1.0)
|
157
|
+
vcr (6.0.0)
|
158
|
+
webmock (3.14.0)
|
159
|
+
addressable (>= 2.8.0)
|
160
|
+
crack (>= 0.3.2)
|
161
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
162
|
+
zeitwerk (2.5.1)
|
111
163
|
|
112
164
|
PLATFORMS
|
165
|
+
ruby
|
166
|
+
universal-java-11
|
113
167
|
x86_64-darwin-21
|
168
|
+
x86_64-linux
|
114
169
|
|
115
170
|
DEPENDENCIES
|
171
|
+
code-scanning-rubocop
|
172
|
+
dead_end
|
116
173
|
debug
|
174
|
+
faker
|
117
175
|
rake (~> 13.0)
|
118
176
|
rspec (~> 3.0)
|
119
177
|
rubocop
|
178
|
+
rubocop-performance
|
179
|
+
rubocop-rspec
|
120
180
|
rubocop-shopify
|
121
181
|
still_active!
|
182
|
+
vcr
|
183
|
+
webmock
|
122
184
|
|
123
185
|
BUNDLED WITH
|
124
|
-
2.2.
|
186
|
+
2.2.31
|
data/README.md
CHANGED
@@ -22,9 +22,9 @@ Usage: still_active [options]
|
|
22
22
|
--markdown Prints output in markdown format
|
23
23
|
--json Prints output in JSON format
|
24
24
|
--github-oauth-token=TOKEN GitHub OAuth token to make API calls
|
25
|
-
--
|
26
|
-
--warning-range-
|
27
|
-
--warning-range-end=YEARS maximum number of years since last activity to be
|
25
|
+
--simultaneous-requests=QTY Number of simultaneous requests made
|
26
|
+
--no-warning-range-end=YEARS maximum number of years since last activity until which you do not want to be warned about
|
27
|
+
--warning-range-end=YEARS maximum number of years since last activity that you want to be warned about
|
28
28
|
--critical-warning-emoji=EMOJI
|
29
29
|
--futurist-emoji=EMOJI
|
30
30
|
--success-emoji=EMOJI
|
@@ -53,14 +53,21 @@ stll_active --github-oauth-token=my-token-here
|
|
53
53
|
|
54
54
|
Outputs:
|
55
55
|
|
56
|
-
| gem activity old? | up to date? | name
|
57
|
-
| ----------------- | ----------- |
|
58
|
-
| | ✅ | [
|
59
|
-
| | ✅ | [
|
60
|
-
|
|
61
|
-
| | ✅ | [
|
62
|
-
| | ✅ | [
|
63
|
-
|
|
56
|
+
| gem activity old? | up to date? | name | version used | release date | latest version | release date | latest pre-release version | release date | last commit date |
|
57
|
+
| ----------------- | ----------- | -------------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------ | ----------------------------------------------------------------------- | ------------ | ----------------------------------------------------------------------- | ------------ | ------------------------------------------------------------ |
|
58
|
+
| | ✅ | [code-scanning-rubocop](https://github.com/arthurnn/code-scanning-rubocop) | [0.5.0](https://rubygems.org/gems/code-scanning-rubocop/versions/0.5.0) | 2020/12 | [0.5.0](https://rubygems.org/gems/code-scanning-rubocop/versions/0.5.0) | 2020/12 | ❓ | ❓ | [2020/12](https://github.com/arthurnn/code-scanning-rubocop) |
|
59
|
+
| | ✅ | [dead_end](https://github.com/zombocom/dead_end) | [3.0.1](https://rubygems.org/gems/dead_end/versions/3.0.1) | 2021/11 | [3.0.1](https://rubygems.org/gems/dead_end/versions/3.0.1) | 2021/11 | ❓ | ❓ | [2021/11](https://github.com/zombocom/dead_end) |
|
60
|
+
| | ✅ | [debug](https://github.com/ruby/debug) | [1.3.4](https://rubygems.org/gems/debug/versions/1.3.4) | 2021/10 | [1.3.4](https://rubygems.org/gems/debug/versions/1.3.4) | 2021/10 | [1.0.0.rc2](https://rubygems.org/gems/debug/versions/1.0.0.rc2) | 2021/09 | [2021/11](https://github.com/ruby/debug) |
|
61
|
+
| | ✅ | [faker](https://github.com/faker-ruby/faker) | [2.19.0](https://rubygems.org/gems/faker/versions/2.19.0) | 2021/08 | [2.19.0](https://rubygems.org/gems/faker/versions/2.19.0) | 2021/08 | ❓ | ❓ | [2021/11](https://github.com/faker-ruby/faker) |
|
62
|
+
| | ✅ | [rake](https://github.com/ruby/rake) | [13.0.6](https://rubygems.org/gems/rake/versions/13.0.6) | 2021/07 | [13.0.6](https://rubygems.org/gems/rake/versions/13.0.6) | 2021/07 | [13.0.0.pre.1](https://rubygems.org/gems/rake/versions/13.0.0.pre.1) | 2019/09 | [2021/07](https://github.com/ruby/rake) |
|
63
|
+
| | ✅ | [rspec](https://github.com/rspec/rspec) | [3.10.0](https://rubygems.org/gems/rspec/versions/3.10.0) | 2020/10 | [3.10.0](https://rubygems.org/gems/rspec/versions/3.10.0) | 2020/10 | [3.6.0.beta2](https://rubygems.org/gems/rspec/versions/3.6.0.beta2) | 2016/12 | [2021/10](https://github.com/rspec/rspec) |
|
64
|
+
| | ✅ | [rubocop](https://github.com/rubocop/rubocop) | [1.22.3](https://rubygems.org/gems/rubocop/versions/1.22.3) | 2021/10 | [1.22.3](https://rubygems.org/gems/rubocop/versions/1.22.3) | 2021/10 | ❓ | ❓ | [2021/11](https://github.com/rubocop/rubocop) |
|
65
|
+
| | ✅ | [rubocop-performance](https://github.com/rubocop/rubocop-performance) | [1.12.0](https://rubygems.org/gems/rubocop-performance/versions/1.12.0) | 2021/10 | [1.12.0](https://rubygems.org/gems/rubocop-performance/versions/1.12.0) | 2021/10 | ❓ | ❓ | [2021/11](https://github.com/rubocop/rubocop-performance) |
|
66
|
+
| | ✅ | [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) | [2.6.0](https://rubygems.org/gems/rubocop-rspec/versions/2.6.0) | 2021/11 | [2.6.0](https://rubygems.org/gems/rubocop-rspec/versions/2.6.0) | 2021/11 | [2.0.0.pre](https://rubygems.org/gems/rubocop-rspec/versions/2.0.0.pre) | 2020/10 | [2021/11](https://github.com/rubocop/rubocop-rspec) |
|
67
|
+
| | ✅ | [rubocop-shopify](https://github.com/Shopify/ruby-style-guide) | [2.3.0](https://rubygems.org/gems/rubocop-shopify/versions/2.3.0) | 2021/10 | [2.3.0](https://rubygems.org/gems/rubocop-shopify/versions/2.3.0) | 2021/10 | ❓ | ❓ | [2021/11](https://github.com/Shopify/ruby-style-guide) |
|
68
|
+
| | ✅ | [still_active](https://github.com/SeanLF/still_active) | [0.4.0](https://rubygems.org/gems/still_active/versions/0.4.0) | 2021/11 | [0.4.0](https://rubygems.org/gems/still_active/versions/0.4.0) | 2021/11 | ❓ | ❓ | [2021/11](https://github.com/SeanLF/still_active) |
|
69
|
+
| | ✅ | [vcr](https://github.com/vcr/vcr) | [6.0.0](https://rubygems.org/gems/vcr/versions/6.0.0) | 2020/05 | [6.0.0](https://rubygems.org/gems/vcr/versions/6.0.0) | 2020/05 | [2.0.0.rc2](https://rubygems.org/gems/vcr/versions/2.0.0.rc2) | 2012/02 | [2021/10](https://github.com/vcr/vcr) |
|
70
|
+
| | ✅ | [webmock](https://github.com/bblimke/webmock) | [3.14.0](https://rubygems.org/gems/webmock/versions/3.14.0) | 2021/08 | [3.14.0](https://rubygems.org/gems/webmock/versions/3.14.0) | 2021/08 | [2.0.0.beta2](https://rubygems.org/gems/webmock/versions/2.0.0.beta2) | 2016/04 | [2021/09](https://github.com/bblimke/webmock) |
|
64
71
|
|
65
72
|
### Configuration options
|
66
73
|
|
@@ -71,9 +78,8 @@ Outputs:
|
|
71
78
|
- `success_emoji` ✅
|
72
79
|
- `unsure_emoji` ❓
|
73
80
|
- `warning_emoji` ⚠️
|
74
|
-
- `
|
75
|
-
- `
|
76
|
-
- `warning_range_end` 3
|
81
|
+
- `no_warning_range_end` 1 (considered safe if last activity is at most 1 year ago)
|
82
|
+
- `warning_range_end` 3 (warns if last activity is between 1 and 3 years ago)
|
77
83
|
|
78
84
|
## Development
|
79
85
|
|