still_active 0.1.1 → 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: c6332676d54a35bce460f39cc99515b165207f92352efdc8026abef42fadd22d
4
- data.tar.gz: 6d69c16159ff9c6871d3f034ddbf513d2e6c637e20a15c064e2bc5d924c7dbae
3
+ metadata.gz: ee30b8e061e74685f513407c59b392fa1cfc921e7012784763f13266c230fcdf
4
+ data.tar.gz: f624f61d7277575ac709ac2a2d28f351749eebbb72c9d6f39eb0566078777dc7
5
5
  SHA512:
6
- metadata.gz: 89a63a961f267ec2abbd2333a21074c0789543bd6d993ee0c9c258b596fcb92eedfa4219e4e565a2c786ab32ddb752af01bada0a1a1469ae78eb2a683803a7e3
7
- data.tar.gz: 3ce7e34a29ea567b5df09ab06d102278d1c4243409d15ef7d5da50ffdb443da1a4529dabc99577b75f29c50b0f7fc83db3bb03b32555107d991057e77a65c06f
6
+ metadata.gz: 73c1cb19174263fc3f7df06b66810456193bd7eeaadc2fc9d2b85d56d3081d1d03d923d9ed05eb7b139afca5bfcfa16596fecb060f61de23af62c8d8b67de761
7
+ data.tar.gz: 1d14e63886116b9a4d8fb91e2ec4d745f2528bca461df5183562f6989e03d7a5d4e9c60edc2e02047b5666d5807b2f5386be8c2f844119afd69587459249fd2e
@@ -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: '0 0 1 * *'
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,26 @@
1
+ name: RSpec tests
2
+
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 * *'
11
+
12
+ jobs:
13
+ test:
14
+ strategy:
15
+ matrix:
16
+ ruby: [2.7, 3.0, 3.1, head, truffleruby, truffleruby-head]
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v2
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: ${{ matrix.ruby }}
24
+ bundler-cache: true
25
+ - name: Execute the tests
26
+ 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: '0 0 1 * *'
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.1.0
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
@@ -3,5 +3,4 @@
3
3
  --require dead_end
4
4
  --require spec_helper
5
5
 
6
- --require debug
7
6
  --require faker
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,37 @@
1
- ## [Unreleased]
1
+ # Changelog
2
+
3
+ ## Unreleased
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
+
11
+ ## [0.4.0] - 2021-11-11
12
+
13
+ - Change minimum version of Ruby to 2.7
14
+
15
+ ## [0.3.0] - 2021-11-11
16
+
17
+ - Change `safe_range_end` to `no_warning_range_end`
18
+ - Fixes for Ruby 2.6 and 2.7
19
+
20
+ ## [0.2.0] - 2021-11-11
21
+
22
+ - Add `simultaneous-requests` command line parameter (and config option) to specify the maximum number of simultaneous requests
23
+
24
+ ## [0.1.1] - 2021-11-06
25
+
26
+ - Remove `safe_range_start` command line parameter
27
+ - Remove `warning_range_start` command line parameter
28
+
29
+ - Fix bugs
30
+ - use `last_commit_date` rather than `version_used_release_date` to determine the inactive gem emoji
31
+ - use configured values when determining which emoji to output for the inactive gem emoji
32
+ - use configured values when determining which emoji to output for the using latest version emoji
33
+ - the values for `using_latest_version_emoji` and `inactive_repository_emoji` were reversed in the markdown output
34
+ - `NoMethodError` could be raised `VersionHelper#find_version` when versions was nil
2
35
 
3
36
  ## [0.1.0] - 2021-11-06
4
37
 
data/Gemfile CHANGED
@@ -5,8 +5,9 @@ source "https://rubygems.org"
5
5
  # Specify your gem's dependencies in still_active.gemspec
6
6
  gemspec
7
7
 
8
+ gem "code-scanning-rubocop"
9
+ gem "dead_end"
8
10
  gem "rake", "~> 13.0"
9
-
10
11
  gem "rspec", "~> 3.0"
11
-
12
- gem "dead_end"
12
+ gem "vcr"
13
+ gem "webmock"
data/Gemfile.lock CHANGED
@@ -1,22 +1,22 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- still_active (0.1.1)
4
+ still_active (0.4.1)
5
5
  activesupport
6
6
  async
7
7
  async-http
8
+ bundler (>= 2.0)
8
9
  gems
9
10
  github_api
10
11
 
11
12
  GEM
12
13
  remote: https://rubygems.org/
13
14
  specs:
14
- activesupport (6.1.4.1)
15
+ activesupport (7.0.1)
15
16
  concurrent-ruby (~> 1.0, >= 1.0.2)
16
17
  i18n (>= 1.6, < 2)
17
18
  minitest (>= 5.1)
18
19
  tzinfo (~> 2.0)
19
- zeitwerk (~> 2.3)
20
20
  addressable (2.8.0)
21
21
  public_suffix (>= 2.0.2, < 5.0)
22
22
  ast (2.4.2)
@@ -35,37 +35,45 @@ GEM
35
35
  async
36
36
  async-pool (0.3.9)
37
37
  async (>= 1.25)
38
+ code-scanning-rubocop (0.5.0)
39
+ rubocop (~> 1.0)
38
40
  concurrent-ruby (1.1.9)
39
- console (1.13.1)
41
+ console (1.14.0)
40
42
  fiber-local
41
- dead_end (3.0.1)
42
- debug (1.3.4)
43
+ crack (0.4.5)
44
+ rexml
45
+ dead_end (3.1.1)
46
+ debug (1.4.0)
43
47
  irb (>= 1.3.6)
44
48
  reline (>= 0.2.7)
45
49
  descendants_tracker (0.0.4)
46
50
  thread_safe (~> 0.3, >= 0.3.1)
47
- diff-lcs (1.4.4)
51
+ diff-lcs (1.5.0)
48
52
  faker (2.19.0)
49
53
  i18n (>= 1.6, < 2)
50
- faraday (1.8.0)
54
+ faraday (1.9.3)
51
55
  faraday-em_http (~> 1.0)
52
56
  faraday-em_synchrony (~> 1.0)
53
57
  faraday-excon (~> 1.1)
54
- faraday-httpclient (~> 1.0.1)
58
+ faraday-httpclient (~> 1.0)
59
+ faraday-multipart (~> 1.0)
55
60
  faraday-net_http (~> 1.0)
56
- faraday-net_http_persistent (~> 1.1)
61
+ faraday-net_http_persistent (~> 1.0)
57
62
  faraday-patron (~> 1.0)
58
63
  faraday-rack (~> 1.0)
59
- multipart-post (>= 1.2, < 3)
64
+ faraday-retry (~> 1.0)
60
65
  ruby2_keywords (>= 0.0.4)
61
66
  faraday-em_http (1.0.0)
62
67
  faraday-em_synchrony (1.0.0)
63
68
  faraday-excon (1.1.0)
64
69
  faraday-httpclient (1.0.1)
70
+ faraday-multipart (1.0.3)
71
+ multipart-post (>= 1.2, < 3)
65
72
  faraday-net_http (1.0.1)
66
73
  faraday-net_http_persistent (1.2.0)
67
74
  faraday-patron (1.0.0)
68
75
  faraday-rack (1.0.0)
76
+ faraday-retry (1.0.3)
69
77
  fiber-local (1.0.0)
70
78
  gems (1.2.0)
71
79
  github_api (0.19.0)
@@ -74,14 +82,15 @@ GEM
74
82
  faraday (>= 0.8, < 2)
75
83
  hashie (~> 3.5, >= 3.5.2)
76
84
  oauth2 (~> 1.0)
85
+ hashdiff (1.0.1)
77
86
  hashie (3.6.0)
78
- i18n (1.8.11)
87
+ i18n (1.9.1)
79
88
  concurrent-ruby (~> 1.0)
80
- io-console (0.5.9)
81
- irb (1.3.7)
82
- reline (>= 0.2.7)
89
+ io-console (0.5.11)
90
+ irb (1.4.1)
91
+ reline (>= 0.3.0)
83
92
  jwt (2.3.0)
84
- minitest (5.14.4)
93
+ minitest (5.15.0)
85
94
  multi_json (1.15.0)
86
95
  multi_xml (0.6.0)
87
96
  multipart-post (2.1.1)
@@ -93,7 +102,7 @@ GEM
93
102
  multi_xml (~> 0.5)
94
103
  rack (>= 1.2, < 3)
95
104
  parallel (1.21.0)
96
- parser (3.0.2.0)
105
+ parser (3.1.0.0)
97
106
  ast (~> 2.4.1)
98
107
  protocol-hpack (1.4.2)
99
108
  protocol-http (0.22.5)
@@ -104,38 +113,43 @@ GEM
104
113
  protocol-http (~> 0.18)
105
114
  public_suffix (4.0.6)
106
115
  rack (2.2.3)
107
- rainbow (3.0.0)
116
+ rainbow (3.1.1)
108
117
  rake (13.0.6)
109
- regexp_parser (2.1.1)
110
- reline (0.2.7)
118
+ regexp_parser (2.2.0)
119
+ reline (0.3.1)
111
120
  io-console (~> 0.5)
112
121
  rexml (3.2.5)
113
122
  rspec (3.10.0)
114
123
  rspec-core (~> 3.10.0)
115
124
  rspec-expectations (~> 3.10.0)
116
125
  rspec-mocks (~> 3.10.0)
117
- rspec-core (3.10.1)
126
+ rspec-core (3.10.2)
118
127
  rspec-support (~> 3.10.0)
119
- rspec-expectations (3.10.1)
128
+ rspec-expectations (3.10.2)
120
129
  diff-lcs (>= 1.2.0, < 2.0)
121
130
  rspec-support (~> 3.10.0)
122
- rspec-mocks (3.10.2)
131
+ rspec-mocks (3.10.3)
123
132
  diff-lcs (>= 1.2.0, < 2.0)
124
133
  rspec-support (~> 3.10.0)
125
134
  rspec-support (3.10.3)
126
- rubocop (1.22.3)
135
+ rubocop (1.25.0)
127
136
  parallel (~> 1.10)
128
- parser (>= 3.0.0.0)
137
+ parser (>= 3.1.0.0)
129
138
  rainbow (>= 2.2.2, < 4.0)
130
139
  regexp_parser (>= 1.8, < 3.0)
131
140
  rexml
132
- rubocop-ast (>= 1.12.0, < 2.0)
141
+ rubocop-ast (>= 1.15.1, < 2.0)
133
142
  ruby-progressbar (~> 1.7)
134
143
  unicode-display_width (>= 1.4.0, < 3.0)
135
- rubocop-ast (1.12.0)
144
+ rubocop-ast (1.15.1)
136
145
  parser (>= 3.0.1.1)
137
- rubocop-shopify (2.3.0)
138
- rubocop (~> 1.22)
146
+ rubocop-performance (1.13.2)
147
+ rubocop (>= 1.7.0, < 2.0)
148
+ rubocop-ast (>= 0.4.0)
149
+ rubocop-rspec (2.8.0)
150
+ rubocop (~> 1.19)
151
+ rubocop-shopify (2.4.0)
152
+ rubocop (~> 1.24)
139
153
  ruby-progressbar (1.11.0)
140
154
  ruby2_keywords (0.0.5)
141
155
  thread_safe (0.3.6)
@@ -143,20 +157,32 @@ GEM
143
157
  tzinfo (2.0.4)
144
158
  concurrent-ruby (~> 1.0)
145
159
  unicode-display_width (2.1.0)
146
- zeitwerk (2.5.1)
160
+ vcr (6.0.0)
161
+ webmock (3.14.0)
162
+ addressable (>= 2.8.0)
163
+ crack (>= 0.3.2)
164
+ hashdiff (>= 0.4.0, < 2.0.0)
147
165
 
148
166
  PLATFORMS
167
+ ruby
168
+ universal-java-11
149
169
  x86_64-darwin-21
170
+ x86_64-linux
150
171
 
151
172
  DEPENDENCIES
173
+ code-scanning-rubocop
152
174
  dead_end
153
175
  debug
154
176
  faker
155
177
  rake (~> 13.0)
156
178
  rspec (~> 3.0)
157
179
  rubocop
180
+ rubocop-performance
181
+ rubocop-rspec
158
182
  rubocop-shopify
159
183
  still_active!
184
+ vcr
185
+ webmock
160
186
 
161
187
  BUNDLED WITH
162
- 2.2.30
188
+ 2.2.31
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
@@ -22,8 +28,9 @@ Usage: still_active [options]
22
28
  --markdown Prints output in markdown format
23
29
  --json Prints output in JSON format
24
30
  --github-oauth-token=TOKEN GitHub OAuth token to make API calls
25
- --safe-range-end=YEARS maximum number of years since last activity to be considered safe
26
- --warning-range-end=YEARS maximum number of years since last activity to be considered worrying
31
+ --simultaneous-requests=QTY Number of simultaneous requests made
32
+ --no-warning-range-end=YEARS maximum number of years since last activity until which you do not want to be warned about
33
+ --warning-range-end=YEARS maximum number of years since last activity that you want to be warned about
27
34
  --critical-warning-emoji=EMOJI
28
35
  --futurist-emoji=EMOJI
29
36
  --success-emoji=EMOJI
@@ -52,16 +59,21 @@ stll_active --github-oauth-token=my-token-here
52
59
 
53
60
  Outputs:
54
61
 
55
- | gem activity old? | up to date? | name | version used | release date | latest version | release date | latest pre-release version | release date | last commit date |
56
- | ----------------- | ----------- | -------------------------------------------------------------- | ----------------------------------------------------------------- | ------------ | ----------------------------------------------------------------- | ------------ | -------------------------------------------------------------------- | ------------ | ------------------------------------------------------ |
57
- | | ✅ | [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) |
58
- | | ✅ | [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) |
59
- | | ✅ | [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) |
60
- | | ✅ | [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) |
61
- | | ✅ | [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) |
62
- | | ✅ | [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) |
63
- | | ✅ | [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) |
64
- | | ✅ | [still_active](https://github.com/SeanLF/still_active) | [0.1.0](https://rubygems.org/gems/still_active/versions/0.1.0) | 2021/11 | [0.1.0](https://rubygems.org/gems/still_active/versions/0.1.0) | 2021/11 | ❓ | ❓ | [2021/11](https://github.com/SeanLF/still_active) |
62
+ | gem activity old? | up to date? | name | version used | release date | latest version | release date | latest pre-release version | release date | last commit date |
63
+ | ----------------- | ----------- | -------------------------------------------------------------------------- | ----------------------------------------------------------------------- | ------------ | ----------------------------------------------------------------------- | ------------ | ----------------------------------------------------------------------- | ------------ | ------------------------------------------------------------ |
64
+ | | ✅ | [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) |
65
+ | | ✅ | [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) |
66
+ | | ✅ | [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) |
67
+ | | ✅ | [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) |
68
+ | | ✅ | [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) |
69
+ | | ✅ | [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) |
70
+ | | ✅ | [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) |
71
+ | | ✅ | [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) |
72
+ | | ✅ | [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) |
73
+ | | ✅ | [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) |
74
+ | | ✅ | [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) |
75
+ | | ✅ | [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) |
76
+ | | ✅ | [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) |
65
77
 
66
78
  ### Configuration options
67
79
 
@@ -72,7 +84,7 @@ Outputs:
72
84
  - `success_emoji` ✅
73
85
  - `unsure_emoji` ❓
74
86
  - `warning_emoji` ⚠️
75
- - `safe_range_end` 1 (considered safe if last activity is at most 1 year ago)
87
+ - `no_warning_range_end` 1 (considered safe if last activity is at most 1 year ago)
76
88
  - `warning_range_end` 3 (warns if last activity is between 1 and 3 years ago)
77
89
 
78
90
  ## Development
data/bin/console CHANGED
@@ -7,7 +7,5 @@ require "still_active"
7
7
  # You can add fixtures and/or initialization code here to make experimenting
8
8
  # with your gem easier. You can also use a different console, if you like.
9
9
 
10
- require "debug"
11
-
12
10
  require "irb"
13
11
  IRB.start(__FILE__)