test-prof 1.5.1 → 1.5.2
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/CHANGELOG.md +5 -0
- data/lib/rubocop/test_prof.rb +1 -3
- data/lib/test-prof.rb +2 -4
- data/lib/test_prof/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 794f7efe13d07689e57f27d14a50a6ac0dc1e01de5b52641a94b6b8fbc6f4f8e
|
|
4
|
+
data.tar.gz: 5258154393ae1e875df4ff416beb1155666d350a9cdb0c2e63f37b05d4879470
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fc69db1c6064900b34fa0da7319ea48926d6d6f187059c7a63786370150e9e2b6c97f409c16afa7919f2e9e32652d6ba242624608c5b0f082e5a6b4721a2de7
|
|
7
|
+
data.tar.gz: cd24bd5a9fd594953a054a85cbc85ece2b2e36d0523ce9bd3f75b8840384a54cf1f92cfd6697951f84cb9d47073e7d39d6504325ee48ec7871bed00609a39167
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## master (unreleased)
|
|
4
4
|
|
|
5
|
+
## 1.5.2 (2026-02-03)
|
|
6
|
+
|
|
7
|
+
- Avoid using `Gem.loaded_specs` methods in RuboCop plugin version check. ([@Rylan12][])
|
|
8
|
+
|
|
5
9
|
## 1.5.1 (2026-01-27)
|
|
6
10
|
|
|
7
11
|
- Fix RuboCop plugin. ([@palkan][])
|
|
@@ -484,3 +488,4 @@ See [changelog](https://github.com/test-prof/test-prof/blob/v0.8.0/CHANGELOG.md)
|
|
|
484
488
|
[@john-h-k]: https://github.com/john-h-k
|
|
485
489
|
[@devinburnette]: https://github.com/devinburnette
|
|
486
490
|
[@elasticspoon]: https://github.com/elasticspoon
|
|
491
|
+
[@Rylan12]: https://github.com/Rylan12
|
data/lib/rubocop/test_prof.rb
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
supported = TestProf::Utils.verify_gem_version("rubocop", at_least: "0.51.0")
|
|
5
|
-
unless supported
|
|
3
|
+
if Gem::Version.new(RuboCop::Version::STRING) < Gem::Version.new("0.51.0")
|
|
6
4
|
warn "TestProf cops require RuboCop >= 0.51.0 to run."
|
|
7
5
|
return
|
|
8
6
|
end
|
data/lib/test-prof.rb
CHANGED
data/lib/test_prof/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: test-prof
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vladimir Dementyev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-02-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|