rspec-pending_for 0.1.17 → 0.1.19

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.
data/REEK ADDED
File without changes
data/RUBOCOP.md ADDED
@@ -0,0 +1,71 @@
1
+ # RuboCop Usage Guide
2
+
3
+ ## Overview
4
+
5
+ A tale of two RuboCop plugin gems.
6
+
7
+ ### RuboCop Gradual
8
+
9
+ This project uses `rubocop_gradual` instead of vanilla RuboCop for code style checking. The `rubocop_gradual` tool allows for gradual adoption of RuboCop rules by tracking violations in a lock file.
10
+
11
+ ### RuboCop LTS
12
+
13
+ This project uses `rubocop-lts` to ensure, on a best-effort basis, compatibility with Ruby >= 1.9.2.
14
+ RuboCop rules are meticulously configured by the `rubocop-lts` family of gems to ensure that a project is compatible with a specific version of Ruby. See: https://rubocop-lts.gitlab.io for more.
15
+
16
+ ## Checking RuboCop Violations
17
+
18
+ To check for RuboCop violations in this project, always use:
19
+
20
+ ```bash
21
+ bundle exec rake rubocop_gradual:check
22
+ ```
23
+
24
+ **Do not use** the standard RuboCop commands like:
25
+ - `bundle exec rubocop`
26
+ - `rubocop`
27
+
28
+ ## Understanding the Lock File
29
+
30
+ The `.rubocop_gradual.lock` file tracks all current RuboCop violations in the project. This allows the team to:
31
+
32
+ 1. Prevent new violations while gradually fixing existing ones
33
+ 2. Track progress on code style improvements
34
+ 3. Ensure CI builds don't fail due to pre-existing violations
35
+
36
+ ## Common Commands
37
+
38
+ - **Check violations**
39
+ - `bundle exec rake rubocop_gradual`
40
+ - `bundle exec rake rubocop_gradual:check`
41
+ - **(Safe) Autocorrect violations, and update lockfile if no new violations**
42
+ - `bundle exec rake rubocop_gradual:autocorrect`
43
+ - **Force update the lock file (w/o autocorrect) to match violations present in code**
44
+ - `bundle exec rake rubocop_gradual:force_update`
45
+
46
+ ## Workflow
47
+
48
+ 1. Before submitting a PR, run `bundle exec rake rubocop_gradual:autocorrect`
49
+ a. or just the default `bundle exec rake`, as autocorrection is a pre-requisite of the default task.
50
+ 2. If there are new violations, either:
51
+ - Fix them in your code
52
+ - Run `bundle exec rake rubocop_gradual:force_update` to update the lock file (only for violations you can't fix immediately)
53
+ 3. Commit the updated `.rubocop_gradual.lock` file along with your changes
54
+
55
+ ## Never add inline RuboCop disables
56
+
57
+ Do not add inline `rubocop:disable` / `rubocop:enable` comments anywhere in the codebase (including specs, except when following the few existing `rubocop:disable` patterns for a rule already being disabled elsewhere in the code). We handle exceptions in two supported ways:
58
+
59
+ - Permanent/structural exceptions: prefer adjusting the RuboCop configuration (e.g., in `.rubocop.yml`) to exclude a rule for a path or file pattern when it makes sense project-wide.
60
+ - Temporary exceptions while improving code: record the current violations in `.rubocop_gradual.lock` via the gradual workflow:
61
+ - `bundle exec rake rubocop_gradual:autocorrect` (preferred; will autocorrect what it can and update the lock only if no new violations were introduced)
62
+ - If needed, `bundle exec rake rubocop_gradual:force_update` (as a last resort when you cannot fix the newly reported violations immediately)
63
+
64
+ In general, treat the rules as guidance to follow; fix violations rather than ignore them. For example, RSpec conventions in this project expect `described_class` to be used in specs that target a specific class under test.
65
+
66
+ ## Benefits of rubocop_gradual
67
+
68
+ - Allows incremental adoption of code style rules
69
+ - Prevents CI failures due to pre-existing violations
70
+ - Provides a clear record of code style debt
71
+ - Enables focused efforts on improving code quality over time
data/SECURITY.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  ## Supported Versions
4
4
 
5
- | Version | Supported |
6
- |------------|-----------|
7
- | 0.1.latest | ✅ |
5
+ | Version | Supported |
6
+ |----------|-----------|
7
+ | 1.latest | ✅ |
8
8
 
9
9
  ## Security contact information
10
10
 
@@ -16,7 +16,7 @@ module Rspec
16
16
  # | "maglev" | MagLev |
17
17
  # | "ironruby" | IronRuby |
18
18
  # | "cardinal" | Cardinal |
19
- # | "truffletuby" | Truffle Ruby |
19
+ # | "truffleruby" | Truffle Ruby |
20
20
  #
21
21
 
22
22
  # Keys are the
@@ -30,18 +30,28 @@ module Rspec
30
30
  "maglev" => "MagLev",
31
31
  "ironruby" => "IronRuby",
32
32
  "cardinal" => "Cardinal",
33
- "truffletuby" => "Truffle Ruby",
33
+ "truffleruby" => "Truffle Ruby",
34
34
  }.freeze
35
35
  BROKEN_STRING = "Behavior is broken"
36
36
  BUG_STRING = "due to a bug in the Ruby engine"
37
37
  VERSIONS_STRING = "in Ruby versions"
38
- ISSUES_LINK = "https://github.com/pboling/rspec-pending_for/issues"
38
+ ISSUES_LINK = "https://github.com/galtzo-floss/rspec-pending_for/issues"
39
39
  RELEVANT_VERSIONS_PROC = lambda { |rv| "#{BROKEN_STRING} #{VERSIONS_STRING} #{rv} #{BUG_STRING}" }
40
40
 
41
41
  attr_reader :message, :relevant_versions, :relevant_engine, :reason
42
42
 
43
43
  def initialize(options = {})
44
- @relevant_versions = Array(options[:versions]) # cast to array
44
+ # Normalize versions without enumerating ranges
45
+ raw_versions = options[:versions]
46
+ @relevant_versions = if raw_versions.nil?
47
+ []
48
+ elsif raw_versions.is_a?(Array)
49
+ raw_versions
50
+ elsif raw_versions.is_a?(Range)
51
+ [raw_versions]
52
+ else
53
+ [raw_versions]
54
+ end
45
55
  @relevant_engine = options[:engine].nil? ? nil : options[:engine].to_s
46
56
  @reason = options[:reason]
47
57
  warn_about_unrecognized_engine
@@ -59,6 +69,59 @@ module Rspec
59
69
 
60
70
  private
61
71
 
72
+ # Determine whether the current Ruby version matches any of the provided version specs.
73
+ # A version spec may be:
74
+ # - String: exact match against RubyVersion.to_s
75
+ # - Range[Gem::Version, Gem::Version]: inclusive/exclusive respected
76
+ # - Range[Integer, Integer]: compares major version from RubyVersion.to_s
77
+ def versions_include_current?
78
+ return false if relevant_versions.nil?
79
+
80
+ current_str = RubyVersion.to_s
81
+ current_major = current_str.to_s.split(".").first.to_i
82
+ current_gemv = begin
83
+ Gem::Version.new(current_str.to_s)
84
+ rescue StandardError
85
+ nil
86
+ end
87
+
88
+ relevant_versions.any? do |spec|
89
+ case spec
90
+ when String
91
+ # Support minor-version shorthand like "3.1" to match any 3.1.x
92
+ if spec.to_s =~ /^\d+\.\d+$/
93
+ current_major_minor = current_str.to_s.split(".")[0, 2].join(".")
94
+ spec == current_major_minor
95
+ else
96
+ spec == current_str
97
+ end
98
+ when Range
99
+ b = spec.begin
100
+ e = spec.end
101
+ if b.is_a?(Gem::Version) && e.is_a?(Gem::Version)
102
+ next false unless current_gemv
103
+ # Respect exclusive end
104
+ if spec.exclude_end?
105
+ b <= current_gemv && current_gemv < e
106
+ else
107
+ b <= current_gemv && current_gemv <= e
108
+ end
109
+ elsif b.is_a?(Integer) && e.is_a?(Integer)
110
+ if spec.exclude_end?
111
+ b <= current_major && current_major < e
112
+ else
113
+ b <= current_major && current_major <= e
114
+ end
115
+ else
116
+ # Fallback: try cover? with the string form (likely false if incomparable)
117
+ spec.respond_to?(:cover?) && spec.cover?(current_str)
118
+ end
119
+ else
120
+ false
121
+ end
122
+ end
123
+ end
124
+
62
125
  def warn_about_unrecognized_engine
63
126
  return false if relevant_engine.nil? || !INTERPRETER_MATRIX[relevant_engine].nil?
64
127
 
@@ -69,14 +132,14 @@ If it is a real RUBY_ENGINE, please report as a bug to #{ISSUES_LINK}
69
132
  end
70
133
 
71
134
  def no_engine_specified
72
- reason || RELEVANT_VERSIONS_PROC.call(relevant_versions) if relevant_versions.include?(RubyVersion.to_s)
135
+ reason || RELEVANT_VERSIONS_PROC.call(relevant_versions) if versions_include_current?
73
136
  end
74
137
 
75
138
  def engine_specified_and_relevant
76
139
  if relevant_versions.empty?
77
140
  # No versions specified means ALL versions for this engine
78
141
  reason || "#{BROKEN_STRING} #{BUG_STRING} #{INTERPRETER_MATRIX[relevant_engine]}"
79
- elsif relevant_versions.include?(RubyVersion.to_s)
142
+ elsif versions_include_current?
80
143
  reason || %[#{RELEVANT_VERSIONS_PROC.call(relevant_versions)} (#{INTERPRETER_MATRIX[relevant_engine]})]
81
144
  end
82
145
  end
@@ -3,7 +3,7 @@
3
3
  module Rspec
4
4
  module PendingFor
5
5
  module Version
6
- VERSION = "0.1.17"
6
+ VERSION = "0.1.19"
7
7
  end
8
8
 
9
9
  # Backwards compatability shim.
@@ -26,6 +26,16 @@ module Rspec
26
26
  # end
27
27
  #
28
28
  # Not using named parameters because still supporting Ruby 1.9
29
+ #
30
+ # @param options [Hash] pending configuration
31
+ # @option options [String,Symbol] :engine ("ruby") Ruby engine name to match, e.g. :ruby, :jruby, :truffleruby
32
+ # @option options [String,Range,Array<String,Range>] :versions
33
+ # A single version string or range, or an Array of version specs. Each spec can be:
34
+ # - String: exact version match (e.g., "2.7.8")
35
+ # - Range<Gem::Version>: inclusive/exclusive bounds respected (e.g., Gem::Version.new("2.6.0")...Gem::Version.new("3.0.0"))
36
+ # - Range<Integer>: compares Ruby major version (e.g., 2..3). Inclusive/exclusive respected.
37
+ # JRuby/TruffleRuby are supported via RUBY_VERSION compatibility for Integer ranges and Gem::Version ranges.
38
+ # @option options [String] :reason Custom message to display when pending
29
39
  def pending_for(options = {})
30
40
  modify_example_with(:pending, options)
31
41
  end
@@ -38,6 +48,16 @@ module Rspec
38
48
  # end
39
49
  #
40
50
  # Not using named parameters because still supporting Ruby 1.9
51
+ #
52
+ # @param options [Hash] skip configuration
53
+ # @option options [String,Symbol] :engine ("ruby") Ruby engine name to match, e.g. :ruby, :jruby, :truffleruby
54
+ # @option options [String,Range,Array<String,Range>] :versions
55
+ # A single version string or range, or an Array of version specs. Each spec can be:
56
+ # - String: exact version match (e.g., "2.7.8")
57
+ # - Range<Gem::Version>: inclusive/exclusive bounds respected (e.g., Gem::Version.new("2.6.0")...Gem::Version.new("3.0.0"))
58
+ # - Range<Integer>: compares Ruby major version (e.g., 2..3). Inclusive/exclusive respected.
59
+ # JRuby/TruffleRuby are supported via RUBY_VERSION compatibility for Integer ranges and Gem::Version ranges.
60
+ # @option options [String] :reason Custom message to display when skipping
41
61
  def skip_for(options = {})
42
62
  modify_example_with(:skip, options)
43
63
  end
@@ -0,0 +1,17 @@
1
+ module Rspec
2
+ module PendingFor
3
+ class Build
4
+ @message: String?
5
+ @relevant_versions: Array[untyped]
6
+ @relevant_engine: String?
7
+ @reason: String?
8
+
9
+ def initialize: (?Hash[Symbol, untyped] options) -> void
10
+ def message: () -> String?
11
+ def relevant_versions: () -> Array[untyped]
12
+ def relevant_engine: () -> String?
13
+ def reason: () -> String?
14
+ def current_matches_specified?: () -> bool
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,7 @@
1
+ module Rspec
2
+ module PendingFor
3
+ # Public API mixed into RSpec
4
+ def pending_for: (Hash[Symbol, untyped] options) -> untyped
5
+ def skip_for: (Hash[Symbol, untyped] options) -> untyped
6
+ end
7
+ end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,42 +1,62 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-pending_for
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.17
4
+ version: 0.1.19
5
5
  platform: ruby
6
6
  authors:
7
- - Peter Boling
8
- bindir: bin
7
+ - Peter H. Boling
8
+ bindir: exe
9
9
  cert_chain:
10
10
  - |
11
11
  -----BEGIN CERTIFICATE-----
12
12
  MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
13
13
  ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
14
- A2NvbTAeFw0yNDA5MjAwODU4NDJaFw0yNTA5MjAwODU4NDJaMEMxFTATBgNVBAMM
14
+ A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
15
15
  DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
16
- LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAjrxsKObI
17
- rFQjBpzvVfqnT6JlF8/pkpgEEjFh7ex3zIerfuHzZvSrx+sRDGxQ8koWWG0Wjx8s
18
- wkBZ5dIqvl0g3sWP5asa28u/09opxkQTC1Ao77iYxcBcwoCe/Dpf1m4Q/m6oH0kL
19
- 2AZVNJQL3UkqAcLS0tsj/s/jAKnVlsaZZE5gQiIIi8HtkvSsajtx+Cq2AxDvcWvV
20
- /CliD+pmzYkTjvjwGm8yeyFGGGgrisJMryiZdZlkTwrQSjCzudIKbLeuG8Se4JTD
21
- TAcT+rPubr27v1jwmtIjtiot3rf4nof7LHLb122a/0VR7cC7xPLnXw0Cq1BShvoq
22
- /GKRdSwMNinTOGkFTK1gKnjN+3iD4zyXU3XO3CXoTr+Ju8fXPN1x4tpOMgbv8dme
23
- WbcQMOH9ZjmA5w0bSVRL1c3NhRRpUzrKTNXBEvqOyWjUnintxWKj+cRXx+z+dUgI
24
- dL3kj68fcsiTgl75In3C485pnCMmq1eLuVoiy3jkLNOn2lHeLt9ZK63LAgMBAAGj
25
- fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBRhfc+2UaVYd74p
26
- yJ1JclGiUYN8+jAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
16
+ LGQBGRYDY29tMIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAruUoo0WA
17
+ uoNuq6puKWYeRYiZekz/nsDeK5x/0IEirzcCEvaHr3Bmz7rjo1I6On3gGKmiZs61
18
+ LRmQ3oxy77ydmkGTXBjruJB+pQEn7UfLSgQ0xa1/X3kdBZt6RmabFlBxnHkoaGY5
19
+ mZuZ5+Z7walmv6sFD9ajhzj+oIgwWfnEHkXYTR8I6VLN7MRRKGMPoZ/yvOmxb2DN
20
+ coEEHWKO9CvgYpW7asIihl/9GMpKiRkcYPm9dGQzZc6uTwom1COfW0+ZOFrDVBuV
21
+ FMQRPswZcY4Wlq0uEBLPU7hxnCL9nKK6Y9IhdDcz1mY6HZ91WImNslOSI0S8hRpj
22
+ yGOWxQIhBT3fqCBlRIqFQBudrnD9jSNpSGsFvbEijd5ns7Z9ZMehXkXDycpGAUj1
23
+ to/5cuTWWw1JqUWrKJYoifnVhtE1o1DZ+LkPtWxHtz5kjDG/zR3MG0Ula0UOavlD
24
+ qbnbcXPBnwXtTFeZ3C+yrWpE4pGnl3yGkZj9SMTlo9qnTMiPmuWKQDatAgMBAAGj
25
+ fzB9MAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQWBBQE8uWvNbPVNRXZ
26
+ HlgPbc2PCzC4bjAhBgNVHREEGjAYgRZwZXRlci5ib2xpbmdAZ21haWwuY29tMCEG
27
27
  A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
28
- ggGBAA4fLU2+mQ++jBhVM2IeyvQdw1nm+0thkH4Ldv8ZOBm5ZxCPGIMoYliDDzg4
29
- 4JDFxZR1wR4sdrz/K5tWtEkN23SKzopwbNb1NIQRSLQ7nOoc+4bkuz9xwKinmIvF
30
- D+5qsl2S27WLKFreMDtGoh0CREIMBUxU4rGTh0gtzmweGR+fnOShg4Jo0kxrjU5h
31
- uYk/uVE+bn/jOEGs43GvKXZLyshpBrZjQ+ArbvxDht5t35zbSxerbUxUPZUbXUCW
32
- tTyh38a9UYjAAHvnh6Y4Fi9wd4/pGNsektrzB3z/zlVj4YF2TMLX9XfNJWEGRGpO
33
- sSkLYdtEX1WQAmuZtActVW2cL3HdQaRbiv7VbfpA0eSk0ZdZHvBCl516ZZu10uX6
34
- 82W1mg6fuezdpeBOiXwrEbZSt/oGiF4V511F6nd55p0okwHc/6nS10F/3aKJ4gwC
35
- I5o+DRfXQHqKucx1ldFHvI2rE/kSCWqGTHN2eyu1sqCPeOoIMxrltJhaejKPkxqj
36
- zaF9Og==
28
+ ggGBAJbnUwfJQFPkBgH9cL7hoBfRtmWiCvdqdjeTmi04u8zVNCUox0A4gT982DE9
29
+ wmuN12LpdajxZONqbXuzZvc+nb0StFwmFYZG6iDwaf4BPywm2e/Vmq0YG45vZXGR
30
+ L8yMDSK1cQXjmA+ZBKOHKWavxP6Vp7lWvjAhz8RFwqF9GuNIdhv9NpnCAWcMZtpm
31
+ GUPyIWw/Cw/2wZp74QzZj6Npx+LdXoLTF1HMSJXZ7/pkxLCsB8m4EFVdb/IrW/0k
32
+ kNSfjtAfBHO8nLGuqQZVH9IBD1i9K6aSs7pT6TW8itXUIlkIUI2tg5YzW6OFfPzq
33
+ QekSkX3lZfY+HTSp/o+YvKkqWLUV7PQ7xh1ZYDtocpaHwgxe/j3bBqHE+CUPH2vA
34
+ 0V/FwdTRWcwsjVoOJTrYcff8pBZ8r2MvtAc54xfnnhGFzeRHfcltobgFxkAXdE6p
35
+ DVjBtqT23eugOqQ73umLcYDZkc36vnqGxUBSsXrzY9pzV5gGr2I8YUxMqf6ATrZt
36
+ L9nRqA==
37
37
  -----END CERTIFICATE-----
38
- date: 2025-02-24 00:00:00.000000000 Z
38
+ date: 1980-01-02 00:00:00.000000000 Z
39
39
  dependencies:
40
+ - !ruby/object:Gem::Dependency
41
+ name: version_gem
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.1'
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 1.1.8
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - "~>"
55
+ - !ruby/object:Gem::Version
56
+ version: '1.1'
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 1.1.8
40
60
  - !ruby/object:Gem::Dependency
41
61
  name: rspec-core
42
62
  requirement: !ruby/object:Gem::Requirement
@@ -80,40 +100,57 @@ dependencies:
80
100
  - !ruby/object:Gem::Version
81
101
  version: '1.0'
82
102
  - !ruby/object:Gem::Dependency
83
- name: minitest
103
+ name: kettle-dev
104
+ requirement: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - "~>"
107
+ - !ruby/object:Gem::Version
108
+ version: '1.0'
109
+ type: :development
110
+ prerelease: false
111
+ version_requirements: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - "~>"
114
+ - !ruby/object:Gem::Version
115
+ version: '1.0'
116
+ - !ruby/object:Gem::Dependency
117
+ name: bundler-audit
84
118
  requirement: !ruby/object:Gem::Requirement
85
119
  requirements:
86
120
  - - "~>"
87
121
  - !ruby/object:Gem::Version
88
- version: '5.3'
122
+ version: 0.9.2
89
123
  type: :development
90
124
  prerelease: false
91
125
  version_requirements: !ruby/object:Gem::Requirement
92
126
  requirements:
93
127
  - - "~>"
94
128
  - !ruby/object:Gem::Version
95
- version: '5.3'
129
+ version: 0.9.2
96
130
  - !ruby/object:Gem::Dependency
97
- name: rspec
131
+ name: rake
98
132
  requirement: !ruby/object:Gem::Requirement
99
133
  requirements:
100
134
  - - "~>"
101
135
  - !ruby/object:Gem::Version
102
- version: '3.13'
136
+ version: '13.0'
103
137
  type: :development
104
138
  prerelease: false
105
139
  version_requirements: !ruby/object:Gem::Requirement
106
140
  requirements:
107
141
  - - "~>"
108
142
  - !ruby/object:Gem::Version
109
- version: '3.13'
143
+ version: '13.0'
110
144
  - !ruby/object:Gem::Dependency
111
- name: rspec-block_is_expected
145
+ name: require_bench
112
146
  requirement: !ruby/object:Gem::Requirement
113
147
  requirements:
114
148
  - - "~>"
115
149
  - !ruby/object:Gem::Version
116
150
  version: '1.0'
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ version: 1.0.4
117
154
  type: :development
118
155
  prerelease: false
119
156
  version_requirements: !ruby/object:Gem::Requirement
@@ -121,41 +158,139 @@ dependencies:
121
158
  - - "~>"
122
159
  - !ruby/object:Gem::Version
123
160
  version: '1.0'
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ version: 1.0.4
124
164
  - !ruby/object:Gem::Dependency
125
- name: rake
165
+ name: appraisal2
166
+ requirement: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - "~>"
169
+ - !ruby/object:Gem::Version
170
+ version: '3.0'
171
+ type: :development
172
+ prerelease: false
173
+ version_requirements: !ruby/object:Gem::Requirement
174
+ requirements:
175
+ - - "~>"
176
+ - !ruby/object:Gem::Version
177
+ version: '3.0'
178
+ - !ruby/object:Gem::Dependency
179
+ name: kettle-test
126
180
  requirement: !ruby/object:Gem::Requirement
127
181
  requirements:
182
+ - - "~>"
183
+ - !ruby/object:Gem::Version
184
+ version: '1.0'
185
+ type: :development
186
+ prerelease: false
187
+ version_requirements: !ruby/object:Gem::Requirement
188
+ requirements:
189
+ - - "~>"
190
+ - !ruby/object:Gem::Version
191
+ version: '1.0'
192
+ - !ruby/object:Gem::Dependency
193
+ name: rspec-pending_for
194
+ requirement: !ruby/object:Gem::Requirement
195
+ requirements:
196
+ - - "~>"
197
+ - !ruby/object:Gem::Version
198
+ version: '0.0'
128
199
  - - ">="
129
200
  - !ruby/object:Gem::Version
130
- version: '10'
131
- type: :runtime
201
+ version: 0.0.17
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - "~>"
207
+ - !ruby/object:Gem::Version
208
+ version: '0.0'
209
+ - - ">="
210
+ - !ruby/object:Gem::Version
211
+ version: 0.0.17
212
+ - !ruby/object:Gem::Dependency
213
+ name: ruby-progressbar
214
+ requirement: !ruby/object:Gem::Requirement
215
+ requirements:
216
+ - - "~>"
217
+ - !ruby/object:Gem::Version
218
+ version: '1.13'
219
+ type: :development
132
220
  prerelease: false
133
221
  version_requirements: !ruby/object:Gem::Requirement
134
222
  requirements:
223
+ - - "~>"
224
+ - !ruby/object:Gem::Version
225
+ version: '1.13'
226
+ - !ruby/object:Gem::Dependency
227
+ name: stone_checksums
228
+ requirement: !ruby/object:Gem::Requirement
229
+ requirements:
230
+ - - "~>"
231
+ - !ruby/object:Gem::Version
232
+ version: '1.0'
233
+ - - ">="
234
+ - !ruby/object:Gem::Version
235
+ version: 1.0.2
236
+ type: :development
237
+ prerelease: false
238
+ version_requirements: !ruby/object:Gem::Requirement
239
+ requirements:
240
+ - - "~>"
241
+ - !ruby/object:Gem::Version
242
+ version: '1.0'
243
+ - - ">="
244
+ - !ruby/object:Gem::Version
245
+ version: 1.0.2
246
+ - !ruby/object:Gem::Dependency
247
+ name: gitmoji-regex
248
+ requirement: !ruby/object:Gem::Requirement
249
+ requirements:
250
+ - - "~>"
251
+ - !ruby/object:Gem::Version
252
+ version: '1.0'
253
+ - - ">="
254
+ - !ruby/object:Gem::Version
255
+ version: 1.0.3
256
+ type: :development
257
+ prerelease: false
258
+ version_requirements: !ruby/object:Gem::Requirement
259
+ requirements:
260
+ - - "~>"
261
+ - !ruby/object:Gem::Version
262
+ version: '1.0'
135
263
  - - ">="
136
264
  - !ruby/object:Gem::Version
137
- version: '10'
138
- description: 'Mark specs pending or skipped for specific Ruby engine (e.g. MRI or
139
- JRuby) / version combinations
140
-
141
- '
265
+ version: 1.0.3
266
+ description: "⏳️ Mark specs pending or skipped for specific Ruby engine (e.g. MRI
267
+ or JRuby) & versions, or version ranges. Fund overlooked open source projects -
268
+ bottom of stack, dev/test dependencies: floss-funding.dev"
142
269
  email:
143
- - peter.boling@gmail.com
270
+ - floss@galtzo.com
144
271
  executables: []
145
272
  extensions: []
146
273
  extra_rdoc_files:
147
274
  - CHANGELOG.md
275
+ - CITATION.cff
148
276
  - CODE_OF_CONDUCT.md
149
277
  - CONTRIBUTING.md
278
+ - FUNDING.md
150
279
  - LICENSE.txt
151
280
  - README.md
281
+ - REEK
282
+ - RUBOCOP.md
152
283
  - SECURITY.md
153
284
  files:
154
285
  - CHANGELOG.md
286
+ - CITATION.cff
155
287
  - CODE_OF_CONDUCT.md
156
288
  - CONTRIBUTING.md
289
+ - FUNDING.md
157
290
  - LICENSE.txt
158
291
  - README.md
292
+ - REEK
293
+ - RUBOCOP.md
159
294
  - SECURITY.md
160
295
  - lib/rspec-pending_for.rb
161
296
  - lib/rspec/pending_for.rb
@@ -163,16 +298,30 @@ files:
163
298
  - lib/rspec/pending_for/engine_or_versions_required.rb
164
299
  - lib/rspec/pending_for/rspec.rb
165
300
  - lib/rspec/pending_for/version.rb
166
- homepage: https://github.com/pboling/rspec-pending_for
301
+ - sig/rspec/pending_for.rbs
302
+ - sig/rspec/pending_for/build.rbs
303
+ homepage: https://github.com/galtzo-floss/rspec-pending_for
167
304
  licenses:
168
305
  - MIT
169
- metadata: {}
306
+ metadata:
307
+ 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
310
+ 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
312
+ funding_uri: https://github.com/sponsors/pboling
313
+ wiki_uri: https://github.com/galtzo-floss/rspec-pending_for/wiki
314
+ news_uri: https://www.railsbling.com/tags/rspec-pending_for
315
+ discord_uri: https://discord.gg/3qme4XHNKN
316
+ rubygems_mfa_required: 'true'
170
317
  rdoc_options:
171
318
  - "--title"
172
- - rspec-pending_for - Mark specs pending or skipped for specific Ruby engine (e.g.
173
- MRI or JRuby) / version combinations
319
+ - rspec-pending_for - ⏳️ Mark specs pending or skipped for specified Ruby versions
320
+ or engines
174
321
  - "--main"
175
322
  - README.md
323
+ - "--exclude"
324
+ - "^sig/"
176
325
  - "--line-numbers"
177
326
  - "--inline-source"
178
327
  - "--quiet"
@@ -189,8 +338,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
189
338
  - !ruby/object:Gem::Version
190
339
  version: '0'
191
340
  requirements: []
192
- rubygems_version: 3.6.4
341
+ rubygems_version: 3.7.1
193
342
  specification_version: 4
194
- summary: Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby)
195
- / version combinations
343
+ summary: "⏳️ Mark specs pending or skipped for specified Ruby versions or engines"
196
344
  test_files: []
metadata.gz.sig CHANGED
Binary file