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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1897469552c29056b84010fd5991b4465c76c41e1a66c6c1381dcf3ac88af695
4
- data.tar.gz: cdbeee85dd4055a61a4202f721b0f394395bd91db75e5994d4e80590f37ddbe7
3
+ metadata.gz: 58104caf71779ff17d8810825b6d77752bdf59a2ff822d69559cc17b5044385b
4
+ data.tar.gz: 42de0ed7949194faed067ea995dd05e0de2966aa34e7f90cd7fe951075f9a715
5
5
  SHA512:
6
- metadata.gz: ef33ca0fe4ebcc40e26195844a5d2a2cefa62c677f38e129b2b2fa407c6a8ecb904837ee4d2f3960e1edea7b03d289e4c12b6b619eb76970ea39fb992c920e8e
7
- data.tar.gz: 83893ce9174430d692795cc45213c85bfcb159d35401279df0692b4072af6a54339ed9a79c533b191be6c2171cce51b0b8f5522cdaa85ce0e530a3d2545b32a8
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.10...HEAD
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
@@ -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.delete_prefix(root) : path
115
+ path.start_with?(root) ? path[root.length..-1] : path
116
116
  end
117
117
  end
118
118
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module TurboTests
4
4
  module Version
5
- VERSION = "3.1.10"
5
+ VERSION = "3.1.11"
6
6
  end
7
7
  VERSION = Version::VERSION # Traditional Constant Location
8
8
  end
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.10
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.10
316
- changelog_uri: https://github.com/galtzo-floss/turbo_tests2/blob/v3.1.10/CHANGELOG.md
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.10
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