still_active 0.3.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/rspec.yml +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -1
- data/README.md +1 -1
- data/lib/still_active/version.rb +1 -1
- data/still_active.gemspec +2 -1
- metadata +16 -2
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
|
data/.github/workflows/rspec.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -65,7 +65,7 @@ Outputs:
|
|
|
65
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
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
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.
|
|
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
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
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) |
|
|
71
71
|
|
data/lib/still_active/version.rb
CHANGED
data/still_active.gemspec
CHANGED
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.description = "Obtain last release, pre-release, and last commit date to determine if a gem is still under active development."
|
|
13
13
|
spec.homepage = "https://github.com/SeanLF/still_active"
|
|
14
14
|
spec.license = "MIT"
|
|
15
|
-
spec.required_ruby_version = ">= 2.
|
|
15
|
+
spec.required_ruby_version = ">= 2.7.0"
|
|
16
16
|
|
|
17
17
|
# spec.metadata["allowed_push_host"] = "TODO: Set to 'https://mygemserver.com'"
|
|
18
18
|
|
|
@@ -43,6 +43,7 @@ Gem::Specification.new do |spec|
|
|
|
43
43
|
spec.add_runtime_dependency("async")
|
|
44
44
|
# spec.add_runtime_dependency("cli-ui")
|
|
45
45
|
spec.add_runtime_dependency("async-http")
|
|
46
|
+
spec.add_runtime_dependency("bundler", ">= 2.0")
|
|
46
47
|
spec.add_runtime_dependency("gems")
|
|
47
48
|
spec.add_runtime_dependency("github_api")
|
|
48
49
|
# spec.add_runtime_dependency("gitlab")
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: still_active
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sean Floyd
|
|
@@ -150,6 +150,20 @@ dependencies:
|
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '0'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: bundler
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - ">="
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '2.0'
|
|
160
|
+
type: :runtime
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - ">="
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '2.0'
|
|
153
167
|
- !ruby/object:Gem::Dependency
|
|
154
168
|
name: gems
|
|
155
169
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -231,7 +245,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
231
245
|
requirements:
|
|
232
246
|
- - ">="
|
|
233
247
|
- !ruby/object:Gem::Version
|
|
234
|
-
version: 2.
|
|
248
|
+
version: 2.7.0
|
|
235
249
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
236
250
|
requirements:
|
|
237
251
|
- - ">="
|