turbo_tests2 3.1.10 → 3.1.11
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
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +17 -1
- data/lib/turbo_tests/runner.rb +2 -2
- data/lib/turbo_tests/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 58104caf71779ff17d8810825b6d77752bdf59a2ff822d69559cc17b5044385b
|
|
4
|
+
data.tar.gz: 42de0ed7949194faed067ea995dd05e0de2966aa34e7f90cd7fe951075f9a715
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ff9dafe8088bb4dae5f3e5b399fbb7fc4c824ff66b7e3f06397b185ab3b738917e0acaff01369681997dff28fea815297853e1fc01a3629310fb4c6db9c5552
|
|
7
|
+
data.tar.gz: '0187a43f595120515b4ea3f55f5fb37389a3287740c7865b7f116aa93e990137634e6e021831e31cdf1edf9164f6bb2da2d23b8f236e37218fbd3536ba767890'
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/CHANGELOG.md
CHANGED
|
@@ -30,6 +30,20 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
30
30
|
|
|
31
31
|
### Security
|
|
32
32
|
|
|
33
|
+
## [3.1.11] - 2026-07-16
|
|
34
|
+
|
|
35
|
+
- TAG: [v3.1.11][3.1.11t]
|
|
36
|
+
- COVERAGE: 97.37% -- 704/723 lines in 10 files
|
|
37
|
+
- BRANCH COVERAGE: 88.42% -- 168/190 branches in 10 files
|
|
38
|
+
- 36.67% documented
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
|
|
42
|
+
- No-argument runs once again discover the default `spec` tree while still
|
|
43
|
+
honoring `.rspec` pattern overrides.
|
|
44
|
+
|
|
45
|
+
- Default RSpec file discovery now uses Ruby 2.4-compatible path handling.
|
|
46
|
+
|
|
33
47
|
## [3.1.10] - 2026-07-15
|
|
34
48
|
|
|
35
49
|
- TAG: [v3.1.10][3.1.10t]
|
|
@@ -248,7 +262,9 @@ Please file a bug if you notice a violation of semantic versioning.
|
|
|
248
262
|
|
|
249
263
|
- Initial release
|
|
250
264
|
|
|
251
|
-
[Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.
|
|
265
|
+
[Unreleased]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.11...HEAD
|
|
266
|
+
[3.1.11]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.10...v3.1.11
|
|
267
|
+
[3.1.11t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.1.11
|
|
252
268
|
[3.1.10]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.9...v3.1.10
|
|
253
269
|
[3.1.10t]: https://github.com/galtzo-floss/turbo_tests2/releases/tag/v3.1.10
|
|
254
270
|
[3.1.9]: https://github.com/galtzo-floss/turbo_tests2/compare/v3.1.8...v3.1.9
|
data/lib/turbo_tests/runner.rb
CHANGED
|
@@ -108,11 +108,11 @@ module TurboTests
|
|
|
108
108
|
|
|
109
109
|
def rspec_configured_files_to_run
|
|
110
110
|
configuration = RSpec::Core::Configuration.new
|
|
111
|
-
RSpec::Core::ConfigurationOptions.new([]).configure(configuration)
|
|
111
|
+
RSpec::Core::ConfigurationOptions.new(["spec"]).configure(configuration)
|
|
112
112
|
root = "#{Dir.pwd}/"
|
|
113
113
|
configuration.files_to_run.map do |path|
|
|
114
114
|
path = path.to_s
|
|
115
|
-
path.start_with?(root) ? path.
|
|
115
|
+
path.start_with?(root) ? path[root.length..-1] : path
|
|
116
116
|
end
|
|
117
117
|
end
|
|
118
118
|
end
|
data/lib/turbo_tests/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: turbo_tests2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Illia
|
|
@@ -312,10 +312,10 @@ licenses:
|
|
|
312
312
|
- MIT
|
|
313
313
|
metadata:
|
|
314
314
|
homepage_uri: https://turbo-tests2.galtzo.com
|
|
315
|
-
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.1.
|
|
316
|
-
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.
|
|
315
|
+
source_code_uri: https://github.com/galtzo-floss/turbo_tests2/tree/v3.1.11
|
|
316
|
+
changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.11/CHANGELOG.md
|
|
317
317
|
bug_tracker_uri: https://github.com/galtzo-floss/turbo_tests2/issues
|
|
318
|
-
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.1.
|
|
318
|
+
documentation_uri: https://www.rubydoc.info/gems/turbo_tests2/3.1.11
|
|
319
319
|
funding_uri: https://github.com/sponsors/pboling
|
|
320
320
|
wiki_uri: https://github.com/galtzo-floss/turbo_tests2/wiki
|
|
321
321
|
news_uri: https://www.railsbling.com/tags/turbo_tests2
|
metadata.gz.sig
CHANGED
|
Binary file
|