rspec-pending_for 0.1.19 → 0.1.20

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: 34ad1f42bd1f07f344a29d7bbe84e215023951abc2021c513faf3ccf3969bbd7
4
- data.tar.gz: 94a6e6136ab460d216b0f1acbbf038990256e2c2f9050c071f0a7cd9ac04a153
3
+ metadata.gz: 963738e54d070f578302a2c7b4b33c9e9ae5ba5a05f9eecb7be21a2ee8765459
4
+ data.tar.gz: da9408056638375a4fc35a091fe7c7bb58ab90942549b98720afa6c17cd3ba61
5
5
  SHA512:
6
- metadata.gz: 05ae213408cd139b8d3954898e2ac421e212692b13be6b94148acb1b2cb1ce6c0ac360cab47ea94f6e6bbba9c75b74d4e76fd7034fce2d8fa829123af9df50fd
7
- data.tar.gz: '008c43e53088dd3734521cfce635ca6d285ecb818abc7e8de9139393b9204886a5503a5d4246f79b1ffdb53eaaa4b98033b77c0d79001d191dc4b3f33d21d7cf'
6
+ metadata.gz: 04d7b44eb2c396ef627d50ea7911d67e9e1bb8c48cec69d267136a30d8a2da7391337869f13e5f7356e8c063072c921a6097841beb3e06c6dbe2ea885b6f7fa2
7
+ data.tar.gz: 03b74cc6e5705d5458fd4c418c48b9c4dd7e0c49915a7185463b3579372d2f4311af1fcc80bca12d544bc6bfb35dce4ff493192436abfa6c2a21649499d113a0
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -17,50 +17,89 @@ Please file a bug if you notice a violation of semantic versioning.
17
17
  [📗keep-changelog-img]: https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat
18
18
 
19
19
  ## [Unreleased]
20
+
20
21
  ### Added
22
+
21
23
  ### Changed
24
+
22
25
  ### Deprecated
26
+
23
27
  ### Removed
28
+
24
29
  ### Fixed
30
+
25
31
  ### Security
26
32
 
33
+ ## [0.1.20] - 2026-02-07
34
+
35
+ - TAG: [v0.1.20][0.1.20t]
36
+ - COVERAGE: 100.00% -- 96/96 lines in 6 files
37
+ - BRANCH COVERAGE: 100.00% -- 41/41 branches in 6 files
38
+ - 63.64% documented
39
+
40
+ ### Added
41
+
42
+ - Documentation on hostile takeover of RubyGems
43
+ - https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo
44
+
45
+ ### Fixed
46
+
47
+ - compatibility with Ruby < 2.2 (accidentally switched to require_relative)
48
+
27
49
  ## [0.1.19] - 2025-09-05
50
+
28
51
  - TAG: [v0.1.19][0.1.19t]
29
52
  - COVERAGE: 100.00% -- 96/96 lines in 6 files
30
53
  - BRANCH COVERAGE: 100.00% -- 41/41 branches in 6 files
31
54
  - 63.64% documented
55
+
32
56
  ### Added
57
+
33
58
  - comprehensive documentation and examples in README.md
34
59
  - support minor version shorthand matching
35
60
  - i.e., 3.2 will skip 3.2.8
61
+
36
62
  ### Changed
63
+
37
64
  - issues link updated to new org home: galtzo-floss/rspec-pending_for
38
65
  - upgrade to kettle-dev v1.1.5 template
66
+
39
67
  ### Fixed
68
+
40
69
  - fixed handling of version ranges in `skip_for`/`pending_for`
41
70
  - release date in changelog
42
71
  - truffleruby compatibility without warnings about typo in engine name
43
72
 
44
73
  ## [0.1.18] - 2025-08-24
74
+
45
75
  - TAG: [v0.1.8][0.1.18t]
46
76
  - COVERAGE: 100.00% -- 86/86 lines in 6 files
47
77
  - BRANCH COVERAGE: 100.00% -- 33/33 branches in 6 files
48
78
  - 63.64% documented
79
+
49
80
  ### Added
81
+
50
82
  - Versions can now be ranges!
51
83
 
52
84
  ## [0.1.17] - 2025-02-24
85
+
53
86
  - TAG: [v0.1.7][0.1.17t]
54
87
  - COVERAGE: 98.44% -- 63/64 lines in 6 files
55
88
  - BRANCH COVERAGE: 94.44% -- 17/18 branches in 6 files
56
89
  - 63.64% documented
90
+
57
91
  ### Added
92
+
58
93
  - Specs for `skip_for`
94
+
59
95
  ### Fixed
96
+
60
97
  - Compatibility with truffleruby (maybe? not able to run it in CI yet)
61
98
  - Fixed compatibility with Ruby < 2
62
99
 
63
- [Unreleased]: https://github.com/galtzo-floss/rspec-pending_for/compare/v0.1.19...HEAD
100
+ [Unreleased]: https://github.com/galtzo-floss/rspec-pending_for/compare/v0.1.20...HEAD
101
+ [0.1.20]: https://github.com/galtzo-floss/rspec-pending_for/compare/v0.1.19...v0.1.20
102
+ [0.1.20t]: https://github.com/galtzo-floss/rspec-pending_for/releases/tag/v0.1.20
64
103
  [0.1.19]: https://github.com/galtzo-floss/rspec-pending_for/compare/v0.1.18...v0.1.19
65
104
  [0.1.19t]: https://github.com/galtzo-floss/rspec-pending_for/releases/tag/v0.1.19
66
105
  [0.1.18]: https://github.com/pboling/rspec-pending_for/compare/v0.1.17...v0.1.18
data/CONTRIBUTING.md CHANGED
@@ -187,7 +187,7 @@ NOTE: To build without signing the gem set `SKIP_GEM_SIGNING` to any value in th
187
187
  [🖐contributors]: https://github.com/galtzo-floss/rspec-pending_for/graphs/contributors
188
188
  [🚎contributors-gl]: https://gitlab.com/galtzo-floss/rspec-pending_for/-/graphs/main
189
189
  [🖐contributors-img]: https://contrib.rocks/image?repo=galtzo-floss/rspec-pending_for
190
- [💎rubygems]: https://rubygems.org
190
+ [💎rubygems]: https://gem.coop
191
191
  [🔒️rubygems-security-guide]: https://guides.rubygems.org/security/#building-gems
192
192
  [🔒️rubygems-checksums-pr]: https://github.com/rubygems/rubygems/pull/6022
193
193
  [🔒️rubygems-guides-pr]: https://github.com/rubygems/guides/pull/325
data/README.md CHANGED
@@ -19,6 +19,13 @@ OTOH, if `ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I
19
19
 
20
20
  [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS or refugee efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS or refugee efforts using Patreon][🖇patreon-img]][🖇patreon]
21
21
 
22
+ <details>
23
+ <summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
24
+
25
+ I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
26
+
27
+ </details>
28
+
22
29
  ## 🌻 Synopsis
23
30
 
24
31
  You can do this:
@@ -47,10 +54,11 @@ due to the inherent limitations of GitHub Actions.
47
54
  | Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
48
55
  |-------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
49
56
  | Works with JRuby | ![JRuby 9.1 Compat][💎jruby-9.1i] ![JRuby 9.2 Compat][💎jruby-9.2i] ![JRuby 9.3 Compat][💎jruby-9.3i] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎10-j-wf] [![JRuby 10.0 Compat][💎jruby-c-i]][🚎11-c-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf] |
50
- | Works with Truffle Ruby | ![Truffle Ruby 22.3 Compat][💎truby-22.3i] ![Truffle Ruby 23.0 Compat][💎truby-23.0i] <br/> [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎9-t-wf] [![Truffle Ruby 24.1 Compat][💎truby-c-i]][🚎11-c-wf] |
51
- | Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎4-lg-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎6-s-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎6-s-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎6-s-wf] [![Ruby 3.4 Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf] |
57
+ | Works with Truffle Ruby | ![Truffle Ruby 22.3 Compat][💎truby-22.3i] ![Truffle Ruby 23.0 Compat][💎truby-23.0i] <br/> [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎9-t-wf] [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎9-t-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎9-t-wf] [![Truffle Ruby 33.0 Compat][💎truby-c-i]][🚎11-c-wf] |
58
+ | Works with MRI Ruby 4 | [![Ruby 4.0 Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf] |
59
+ | Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎4-lg-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎4-lg-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎6-s-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎6-s-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎6-s-wf] |
52
60
  | Works with MRI Ruby 2 | ![Ruby 2.0 Compat][💎ruby-2.0i] ![Ruby 2.1 Compat][💎ruby-2.1i] ![Ruby 2.2 Compat][💎ruby-2.2i] <br/> [![Ruby 2.3 Compat][💎ruby-2.3i]][🚎1-an-wf] [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎1-an-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎1-an-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎7-us-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎7-us-wf] |
53
- | Works with MRI Ruby 1 | ![Ruby 1.9 Compat][💎ruby-1.9i] |
61
+ | Works with MRI Ruby 1 | ![Ruby 1.9 Compat][💎ruby-1.9i] |
54
62
  | Source | [![Source on GitLab.com][📜src-gl-img]][📜src-gl] [![Source on CodeBerg.org][📜src-cb-img]][📜src-cb] [![Source on Github.com][📜src-gh-img]][📜src-gh] [![The best SHA: dQw4w9WgXcQ!][🧮kloc-img]][🧮kloc] |
55
63
  | Documentation | [![Current release on RubyDoc.info][📜docs-cr-rd-img]][🚎yard-current] [![YARD on Galtzo.com][📜docs-head-rd-img]][🚎yard-head] [![Maintainer Blog][🚂maint-blog-img]][🚂maint-blog] [![Wiki][📜wiki-img]][📜wiki] |
56
64
  | Compliance | [![License: MIT][📄license-img]][📄license-ref] [![📄ilo-declaration-img]][📄ilo-declaration] [![Security Policy][🔐security-img]][🔐security] [![Contributor Covenant 2.1][🪇conduct-img]][🪇conduct] [![SemVer 2.0.0][📌semver-img]][📌semver] |
@@ -582,7 +590,7 @@ Thanks for RTFM. ☺️
582
590
  [✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
583
591
  [⛳️gem-namespace]: https://github.com/galtzo-floss/rspec-pending_for
584
592
  [⛳️namespace-img]: https://img.shields.io/badge/namespace-Rspec::PendingFor-3C2D2D.svg?style=square&logo=ruby&logoColor=white
585
- [⛳️gem-name]: https://rubygems.org/gems/rspec-pending_for
593
+ [⛳️gem-name]: https://gem.coop/gems/rspec-pending_for
586
594
  [⛳️name-img]: https://img.shields.io/badge/name-rspec--pending__for-3C2D2D.svg?style=square&logo=rubygems&logoColor=red
587
595
  [⛳️tag-img]: https://img.shields.io/github/tag/galtzo-floss/rspec-pending_for.svg
588
596
  [⛳️tag]: http://github.com/galtzo-floss/rspec-pending_for/releases
@@ -629,11 +637,11 @@ Thanks for RTFM. ☺️
629
637
  [📜docs-head-rd-img]: https://img.shields.io/badge/YARD_on_Galtzo.com-HEAD-943CD2?style=for-the-badge&logo=readthedocs&logoColor=white
630
638
  [📜wiki]: https://gitlab.com/galtzo-floss/rspec-pending_for/-/wikis/home
631
639
  [📜wiki-img]: https://img.shields.io/badge/wiki-examples-943CD2.svg?style=for-the-badge&logo=Wiki&logoColor=white
632
- [👽dl-rank]: https://rubygems.org/gems/rspec-pending_for
640
+ [👽dl-rank]: https://gem.coop/gems/rspec-pending_for
633
641
  [👽dl-ranki]: https://img.shields.io/gem/rd/rspec-pending_for.svg
634
642
  [👽oss-help]: https://www.codetriage.com/galtzo-floss/rspec-pending_for
635
643
  [👽oss-helpi]: https://www.codetriage.com/galtzo-floss/rspec-pending_for/badges/users.svg
636
- [👽version]: https://rubygems.org/gems/rspec-pending_for
644
+ [👽version]: https://gem.coop/gems/rspec-pending_for
637
645
  [👽versioni]: https://img.shields.io/gem/v/rspec-pending_for.svg
638
646
  [🔑qlty-mnt]: https://qlty.sh/gh/galtzo-floss/projects/rspec-pending_for
639
647
  [🔑qlty-mnti]: https://qlty.sh/gh/galtzo-floss/projects/rspec-pending_for/maintainability.svg
@@ -684,11 +692,14 @@ Thanks for RTFM. ☺️
684
692
  [💎ruby-3.1i]: https://img.shields.io/badge/Ruby-3.1-CC342D?style=for-the-badge&logo=ruby&logoColor=white
685
693
  [💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
686
694
  [💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
695
+ [💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
687
696
  [💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
688
697
  [💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
689
698
  [💎truby-22.3i]: https://img.shields.io/badge/Truffle_Ruby-22.3_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=pink
690
699
  [💎truby-23.0i]: https://img.shields.io/badge/Truffle_Ruby-23.0_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=pink
691
700
  [💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
701
+ [💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
702
+ [💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
692
703
  [💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
693
704
  [💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
694
705
  [💎jruby-9.1i]: https://img.shields.io/badge/JRuby-9.1_(%F0%9F%9A%ABCI)-AABBCC?style=for-the-badge&logo=ruby&logoColor=red
data/SECURITY.md CHANGED
@@ -4,7 +4,8 @@
4
4
 
5
5
  | Version | Supported |
6
6
  |----------|-----------|
7
- | 1.latest | ✅ |
7
+ | 0.1.x | ✅ |
8
+ | < 0.1 | :x: |
8
9
 
9
10
  ## Security contact information
10
11
 
@@ -3,7 +3,7 @@
3
3
  module Rspec
4
4
  module PendingFor
5
5
  module Version
6
- VERSION = "0.1.19"
6
+ VERSION = "0.1.20"
7
7
  end
8
8
 
9
9
  # Backwards compatability shim.
@@ -5,10 +5,11 @@ require "ruby_version"
5
5
  require "ruby_engine"
6
6
 
7
7
  # This gem
8
- require_relative "pending_for/version"
9
- require_relative "pending_for/engine_or_versions_required"
10
- require_relative "pending_for/build"
11
- require_relative "pending_for/rspec"
8
+ # NOTE: Switch to require_relative once dropping support for Ruby < 2.2
9
+ require "rspec/pending_for/version"
10
+ require "rspec/pending_for/engine_or_versions_required"
11
+ require "rspec/pending_for/build"
12
+ require "rspec/pending_for/rspec"
12
13
 
13
14
  module Rspec
14
15
  # Use with Rspec by including in your example groups, just like any other Rspec helpers:
@@ -1 +1 @@
1
- require_relative "rspec/pending_for"
1
+ require "rspec/pending_for"
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-pending_for
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19
4
+ version: 0.1.20
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter H. Boling
@@ -105,14 +105,20 @@ dependencies:
105
105
  requirements:
106
106
  - - "~>"
107
107
  - !ruby/object:Gem::Version
108
- version: '1.0'
108
+ version: '1.2'
109
+ - - ">="
110
+ - !ruby/object:Gem::Version
111
+ version: 1.2.4
109
112
  type: :development
110
113
  prerelease: false
111
114
  version_requirements: !ruby/object:Gem::Requirement
112
115
  requirements:
113
116
  - - "~>"
114
117
  - !ruby/object:Gem::Version
115
- version: '1.0'
118
+ version: '1.2'
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: 1.2.4
116
122
  - !ruby/object:Gem::Dependency
117
123
  name: bundler-audit
118
124
  requirement: !ruby/object:Gem::Requirement
@@ -168,6 +174,9 @@ dependencies:
168
174
  - - "~>"
169
175
  - !ruby/object:Gem::Version
170
176
  version: '3.0'
177
+ - - ">="
178
+ - !ruby/object:Gem::Version
179
+ version: 3.0.2
171
180
  type: :development
172
181
  prerelease: false
173
182
  version_requirements: !ruby/object:Gem::Requirement
@@ -175,6 +184,9 @@ dependencies:
175
184
  - - "~>"
176
185
  - !ruby/object:Gem::Version
177
186
  version: '3.0'
187
+ - - ">="
188
+ - !ruby/object:Gem::Version
189
+ version: 3.0.2
178
190
  - !ruby/object:Gem::Dependency
179
191
  name: kettle-test
180
192
  requirement: !ruby/object:Gem::Requirement
@@ -305,10 +317,10 @@ licenses:
305
317
  - MIT
306
318
  metadata:
307
319
  homepage_uri: https://rspec-pending-for.galtzo.com/
308
- source_code_uri: https://github.com/galtzo-floss/rspec-pending_for/tree/v0.1.19
309
- changelog_uri: https://github.com/galtzo-floss/rspec-pending_for/blob/v0.1.19/CHANGELOG.md
320
+ source_code_uri: https://github.com/galtzo-floss/rspec-pending_for/tree/v0.1.20
321
+ changelog_uri: https://github.com/galtzo-floss/rspec-pending_for/blob/v0.1.20/CHANGELOG.md
310
322
  bug_tracker_uri: https://github.com/galtzo-floss/rspec-pending_for/issues
311
- documentation_uri: https://www.rubydoc.info/gems/rspec-pending_for/0.1.19
323
+ documentation_uri: https://www.rubydoc.info/gems/rspec-pending_for/0.1.20
312
324
  funding_uri: https://github.com/sponsors/pboling
313
325
  wiki_uri: https://github.com/galtzo-floss/rspec-pending_for/wiki
314
326
  news_uri: https://www.railsbling.com/tags/rspec-pending_for
@@ -338,7 +350,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
338
350
  - !ruby/object:Gem::Version
339
351
  version: '0'
340
352
  requirements: []
341
- rubygems_version: 3.7.1
353
+ rubygems_version: 4.0.5
342
354
  specification_version: 4
343
355
  summary: "⏳️ Mark specs pending or skipped for specified Ruby versions or engines"
344
356
  test_files: []
metadata.gz.sig CHANGED
Binary file