rspec-pending_for 0.1.16 → 0.1.18

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 ADDED
@@ -0,0 +1,21 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ | Version | Supported |
6
+ |----------|-----------|
7
+ | 1.latest | ✅ |
8
+
9
+ ## Security contact information
10
+
11
+ To report a security vulnerability, please use the
12
+ [Tidelift security contact](https://tidelift.com/security).
13
+ Tidelift will coordinate the fix and disclosure.
14
+
15
+ ## Additional Support
16
+
17
+ If you are interested in support for versions older than the latest release,
18
+ please consider sponsoring the project / maintainer @ https://liberapay.com/pboling/donate,
19
+ or find other sponsorship links in the [README].
20
+
21
+ [README]: README.md
@@ -5,35 +5,37 @@ module Rspec
5
5
  # SRP: Describe the RubyEngine and/or RubyVersion(s) that will be pended or skipped and with what message
6
6
  class Build
7
7
  #
8
- # | RUBY_ENGINE | Implementation |
9
- # |:-----------:|:------------------------:|
10
- # | "unknown" | MRI < 1.9 (probably) |
11
- # | "ruby" | MRI >= 1.9 |
12
- # | "ree" | Ruby Enterprise Edition |
13
- # | "jruby" | JRuby |
14
- # | "macruby" | MacRuby |
15
- # | "rbx" | Rubinius |
16
- # | "maglev" | MagLev |
17
- # | "ironruby" | IronRuby |
18
- # | "cardinal" | Cardinal |
8
+ # | RUBY_ENGINE | Implementation |
9
+ # |:--------------:|:------------------------:|
10
+ # | "unknown" | MRI < 1.9 (probably) |
11
+ # | "ruby" | MRI >= 1.9 |
12
+ # | "ree" | Ruby Enterprise Edition |
13
+ # | "jruby" | JRuby |
14
+ # | "macruby" | MacRuby |
15
+ # | "rbx" | Rubinius |
16
+ # | "maglev" | MagLev |
17
+ # | "ironruby" | IronRuby |
18
+ # | "cardinal" | Cardinal |
19
+ # | "truffletuby" | Truffle Ruby |
19
20
  #
20
21
 
21
22
  # Keys are the
22
23
  INTERPRETER_MATRIX = {
23
- 'unknown' => 'MRI < 1.9 (probably)',
24
- 'ruby' => 'MRI >= 1.9',
25
- 'ree' => 'Ruby Enterprise Edition',
26
- 'jruby' => 'JRuby',
27
- 'macruby' => 'MacRuby',
28
- 'rbx' => 'Rubinius',
29
- 'maglev' => 'MagLev',
30
- 'ironruby' => 'IronRuby',
31
- 'cardinal' => 'Cardinal'
24
+ "unknown" => "MRI < 1.9 (probably)",
25
+ "ruby" => "MRI >= 1.9",
26
+ "ree" => "Ruby Enterprise Edition",
27
+ "jruby" => "JRuby",
28
+ "macruby" => "MacRuby",
29
+ "rbx" => "Rubinius",
30
+ "maglev" => "MagLev",
31
+ "ironruby" => "IronRuby",
32
+ "cardinal" => "Cardinal",
33
+ "truffletuby" => "Truffle Ruby",
32
34
  }.freeze
33
- BROKEN_STRING = 'Behavior is broken'
34
- BUG_STRING = 'due to a bug in the Ruby engine'
35
- VERSIONS_STRING = 'in Ruby versions'
36
- ISSUES_LINK = 'https://github.com/pboling/rspec-pending_for/issues'
35
+ BROKEN_STRING = "Behavior is broken"
36
+ BUG_STRING = "due to a bug in the Ruby engine"
37
+ VERSIONS_STRING = "in Ruby versions"
38
+ ISSUES_LINK = "https://github.com/pboling/rspec-pending_for/issues"
37
39
  RELEVANT_VERSIONS_PROC = lambda { |rv| "#{BROKEN_STRING} #{VERSIONS_STRING} #{rv} #{BUG_STRING}" }
38
40
 
39
41
  attr_reader :message, :relevant_versions, :relevant_engine, :reason
@@ -45,10 +47,10 @@ module Rspec
45
47
  warn_about_unrecognized_engine
46
48
  # If engine is nil, then any matching versions should be pended
47
49
  @message = if @relevant_engine.nil?
48
- no_engine_specified
49
- elsif RubyEngine.is? @relevant_engine
50
- engine_specified_and_relevant
51
- end
50
+ no_engine_specified
51
+ elsif RubyEngine.is?(@relevant_engine)
52
+ engine_specified_and_relevant
53
+ end
52
54
  end
53
55
 
54
56
  def current_matches_specified?
@@ -57,24 +59,71 @@ module Rspec
57
59
 
58
60
  private
59
61
 
62
+ # Determine whether the current Ruby version matches any of the provided version specs.
63
+ # A version spec may be:
64
+ # - String: exact match against RubyVersion.to_s
65
+ # - Range[Gem::Version, Gem::Version]: inclusive/exclusive respected
66
+ # - Range[Integer, Integer]: compares major version from RubyVersion.to_s
67
+ def versions_include_current?
68
+ return false if relevant_versions.nil?
69
+
70
+ current_str = RubyVersion.to_s
71
+ current_major = current_str.to_s.split(".").first.to_i
72
+ current_gemv = begin
73
+ Gem::Version.new(current_str.to_s)
74
+ rescue StandardError
75
+ nil
76
+ end
77
+
78
+ relevant_versions.any? do |spec|
79
+ case spec
80
+ when String
81
+ spec == current_str
82
+ when Range
83
+ b = spec.begin
84
+ e = spec.end
85
+ if b.is_a?(Gem::Version) && e.is_a?(Gem::Version)
86
+ next false unless current_gemv
87
+ # Respect exclusive end
88
+ if spec.exclude_end?
89
+ b <= current_gemv && current_gemv < e
90
+ else
91
+ b <= current_gemv && current_gemv <= e
92
+ end
93
+ elsif b.is_a?(Integer) && e.is_a?(Integer)
94
+ if spec.exclude_end?
95
+ b <= current_major && current_major < e
96
+ else
97
+ b <= current_major && current_major <= e
98
+ end
99
+ else
100
+ # Fallback: try cover? with the string form (likely false if incomparable)
101
+ spec.respond_to?(:cover?) && spec.cover?(current_str)
102
+ end
103
+ else
104
+ false
105
+ end
106
+ end
107
+ end
108
+
60
109
  def warn_about_unrecognized_engine
61
110
  return false if relevant_engine.nil? || !INTERPRETER_MATRIX[relevant_engine].nil?
62
111
 
63
- warn %[
112
+ warn(%[
64
113
  Engine specified (#{relevant_engine}) is not known to rspec-pending_for.
65
114
  If it is a real RUBY_ENGINE, please report as a bug to #{ISSUES_LINK}
66
- ]
115
+ ])
67
116
  end
68
117
 
69
118
  def no_engine_specified
70
- reason || RELEVANT_VERSIONS_PROC.call(relevant_versions) if relevant_versions.include?(RubyVersion.to_s)
119
+ reason || RELEVANT_VERSIONS_PROC.call(relevant_versions) if versions_include_current?
71
120
  end
72
121
 
73
122
  def engine_specified_and_relevant
74
123
  if relevant_versions.empty?
75
124
  # No versions specified means ALL versions for this engine
76
125
  reason || "#{BROKEN_STRING} #{BUG_STRING} #{INTERPRETER_MATRIX[relevant_engine]}"
77
- elsif relevant_versions.include?(RubyVersion.to_s)
126
+ elsif versions_include_current?
78
127
  reason || %[#{RELEVANT_VERSIONS_PROC.call(relevant_versions)} (#{INTERPRETER_MATRIX[relevant_engine]})]
79
128
  end
80
129
  end
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'rspec/core'
3
+ require "rspec/core"
4
+
4
5
  RSpec.configure do |c|
5
- c.include Rspec::PendingFor
6
+ c.include(Rspec::PendingFor)
6
7
  end
@@ -2,6 +2,11 @@
2
2
 
3
3
  module Rspec
4
4
  module PendingFor
5
- VERSION = '0.1.16'
5
+ module Version
6
+ VERSION = "0.1.18"
7
+ end
8
+
9
+ # Backwards compatability shim.
10
+ VERSION = Version::VERSION
6
11
  end
7
12
  end
@@ -1,11 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'ruby_version'
4
- require 'ruby_engine'
5
- require 'rspec/pending_for/version'
6
- require 'rspec/pending_for/engine_or_versions_required'
7
- require 'rspec/pending_for/build'
8
- require 'rspec/pending_for/rspec'
3
+ # External Libraries
4
+ require "ruby_version"
5
+ require "ruby_engine"
6
+
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"
9
12
 
10
13
  module Rspec
11
14
  # Use with Rspec by including in your example groups, just like any other Rspec helpers:
@@ -23,6 +26,16 @@ module Rspec
23
26
  # end
24
27
  #
25
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,Array<String,Range>] :versions
33
+ # A single version string 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
26
39
  def pending_for(options = {})
27
40
  modify_example_with(:pending, options)
28
41
  end
@@ -35,6 +48,16 @@ module Rspec
35
48
  # end
36
49
  #
37
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,Array<String,Range>] :versions
55
+ # A single version string 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
38
61
  def skip_for(options = {})
39
62
  modify_example_with(:skip, options)
40
63
  end
@@ -42,7 +65,7 @@ module Rspec
42
65
  private
43
66
 
44
67
  def modify_example_with(message, options)
45
- raise(EngineOrVersionsRequired, :pending_for) unless options[:engine] || options[:versions]
68
+ raise(EngineOrVersionsRequired, "#{message}_for") unless options[:engine] || options[:versions]
46
69
 
47
70
  build = Build.new(options)
48
71
  send(message, build.message) if build.current_matches_specified?
@@ -0,0 +1 @@
1
+ require_relative "rspec/pending_for"
data.tar.gz.sig ADDED
@@ -0,0 +1,5 @@
1
+ JŒ�5�A
2
+ �����I0��ZB���
3
+ ��1L�p���b?���4S ������x�;.��_'C�[#8��,�(�-����v �b`�/�lR&]��#(���%���?T�������,ѻh��F����O���2�����~
4
+ ��<B��f��ctyC�G�a����|`�Ť��t~
5
+ >.�Z�\�\�D�) ],^��0u�miC+�!��HP����/��
metadata CHANGED
@@ -1,49 +1,70 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-pending_for
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.16
4
+ version: 0.1.18
5
5
  platform: ruby
6
6
  authors:
7
- - Peter Boling
8
- autorequire:
7
+ - Peter H. Boling
9
8
  bindir: exe
10
- cert_chain: []
11
- date: 2021-02-14 00:00:00.000000000 Z
9
+ cert_chain:
10
+ - |
11
+ -----BEGIN CERTIFICATE-----
12
+ MIIEgDCCAuigAwIBAgIBATANBgkqhkiG9w0BAQsFADBDMRUwEwYDVQQDDAxwZXRl
13
+ ci5ib2xpbmcxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
14
+ A2NvbTAeFw0yNTA1MDQxNTMzMDlaFw00NTA0MjkxNTMzMDlaMEMxFTATBgNVBAMM
15
+ DHBldGVyLmJvbGluZzEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
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
+ A1UdEgQaMBiBFnBldGVyLmJvbGluZ0BnbWFpbC5jb20wDQYJKoZIhvcNAQELBQAD
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
+ -----END CERTIFICATE-----
38
+ date: 2025-08-24 00:00:00.000000000 Z
12
39
  dependencies:
13
40
  - !ruby/object:Gem::Dependency
14
41
  name: rspec-core
15
42
  requirement: !ruby/object:Gem::Requirement
16
43
  requirements:
17
- - - ">="
44
+ - - "~>"
18
45
  - !ruby/object:Gem::Version
19
- version: '0'
46
+ version: '3.0'
20
47
  type: :runtime
21
48
  prerelease: false
22
49
  version_requirements: !ruby/object:Gem::Requirement
23
50
  requirements:
24
- - - ">="
51
+ - - "~>"
25
52
  - !ruby/object:Gem::Version
26
- version: '0'
53
+ version: '3.0'
27
54
  - !ruby/object:Gem::Dependency
28
55
  name: ruby_engine
29
56
  requirement: !ruby/object:Gem::Requirement
30
57
  requirements:
31
- - - ">="
32
- - !ruby/object:Gem::Version
33
- version: '1'
34
- - - "<"
58
+ - - "~>"
35
59
  - !ruby/object:Gem::Version
36
- version: '3'
60
+ version: '2.0'
37
61
  type: :runtime
38
62
  prerelease: false
39
63
  version_requirements: !ruby/object:Gem::Requirement
40
64
  requirements:
41
- - - ">="
42
- - !ruby/object:Gem::Version
43
- version: '1'
44
- - - "<"
65
+ - - "~>"
45
66
  - !ruby/object:Gem::Version
46
- version: '3'
67
+ version: '2.0'
47
68
  - !ruby/object:Gem::Dependency
48
69
  name: ruby_version
49
70
  requirement: !ruby/object:Gem::Requirement
@@ -59,19 +80,19 @@ dependencies:
59
80
  - !ruby/object:Gem::Version
60
81
  version: '1.0'
61
82
  - !ruby/object:Gem::Dependency
62
- name: bundler
83
+ name: appraisal2
63
84
  requirement: !ruby/object:Gem::Requirement
64
85
  requirements:
65
- - - ">="
86
+ - - "~>"
66
87
  - !ruby/object:Gem::Version
67
- version: '0'
88
+ version: '3.0'
68
89
  type: :development
69
90
  prerelease: false
70
91
  version_requirements: !ruby/object:Gem::Requirement
71
92
  requirements:
72
- - - ">="
93
+ - - "~>"
73
94
  - !ruby/object:Gem::Version
74
- version: '0'
95
+ version: '3.0'
75
96
  - !ruby/object:Gem::Dependency
76
97
  name: minitest
77
98
  requirement: !ruby/object:Gem::Requirement
@@ -92,52 +113,148 @@ dependencies:
92
113
  requirements:
93
114
  - - "~>"
94
115
  - !ruby/object:Gem::Version
95
- version: '3'
116
+ version: '3.13'
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: '3.13'
124
+ - !ruby/object:Gem::Dependency
125
+ name: rspec-block_is_expected
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: '1.0'
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: '1.0'
138
+ - !ruby/object:Gem::Dependency
139
+ name: rspec_junit_formatter
140
+ requirement: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - "~>"
143
+ - !ruby/object:Gem::Version
144
+ version: '0.6'
145
+ type: :development
146
+ prerelease: false
147
+ version_requirements: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - "~>"
150
+ - !ruby/object:Gem::Version
151
+ version: '0.6'
152
+ - !ruby/object:Gem::Dependency
153
+ name: kettle-dev
154
+ requirement: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - "~>"
157
+ - !ruby/object:Gem::Version
158
+ version: '1.0'
159
+ - - ">="
160
+ - !ruby/object:Gem::Version
161
+ version: 1.0.8
96
162
  type: :development
97
163
  prerelease: false
98
164
  version_requirements: !ruby/object:Gem::Requirement
99
165
  requirements:
100
166
  - - "~>"
101
167
  - !ruby/object:Gem::Version
102
- version: '3'
103
- description:
168
+ version: '1.0'
169
+ - - ">="
170
+ - !ruby/object:Gem::Version
171
+ version: 1.0.8
172
+ - !ruby/object:Gem::Dependency
173
+ name: rake
174
+ requirement: !ruby/object:Gem::Requirement
175
+ requirements:
176
+ - - "~>"
177
+ - !ruby/object:Gem::Version
178
+ version: '13.0'
179
+ type: :development
180
+ prerelease: false
181
+ version_requirements: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - "~>"
184
+ - !ruby/object:Gem::Version
185
+ version: '13.0'
186
+ description: "⏳️ Mark specs pending or skipped for specific Ruby engine (e.g. MRI
187
+ or JRuby) & versions, or version ranges. Fund overlooked open source projects -
188
+ bottom of stack, dev/test dependencies: floss-funding.dev"
104
189
  email:
105
- - peter.boling@gmail.com
190
+ - floss@galtzo.com
106
191
  executables: []
107
192
  extensions: []
108
- extra_rdoc_files: []
193
+ extra_rdoc_files:
194
+ - CHANGELOG.md
195
+ - CITATION.cff
196
+ - CODE_OF_CONDUCT.md
197
+ - CONTRIBUTING.md
198
+ - LICENSE.txt
199
+ - README.md
200
+ - REEK
201
+ - RUBOCOP.md
202
+ - SECURITY.md
109
203
  files:
204
+ - CHANGELOG.md
205
+ - CITATION.cff
110
206
  - CODE_OF_CONDUCT.md
111
- - LICENSE
207
+ - CONTRIBUTING.md
208
+ - LICENSE.txt
112
209
  - README.md
210
+ - REEK
211
+ - RUBOCOP.md
212
+ - SECURITY.md
213
+ - lib/rspec-pending_for.rb
113
214
  - lib/rspec/pending_for.rb
114
215
  - lib/rspec/pending_for/build.rb
115
216
  - lib/rspec/pending_for/engine_or_versions_required.rb
116
217
  - lib/rspec/pending_for/rspec.rb
117
218
  - lib/rspec/pending_for/version.rb
118
- homepage: https://github.com/pboling/rspec-pending_for
219
+ homepage: https://github.com/galtzo-floss/rspec-pending_for
119
220
  licenses:
120
221
  - MIT
121
- metadata: {}
122
- post_install_message:
222
+ metadata:
223
+ homepage_uri: https://rspec-pending-for.galtzo.com/
224
+ source_code_uri: https://github.com/galtzo-floss/rspec-pending_for/tree/v0.1.18
225
+ changelog_uri: https://github.com/galtzo-floss/rspec-pending_for/blob/v0.1.18/CHANGELOG.md
226
+ bug_tracker_uri: https://github.com/galtzo-floss/rspec-pending_for/issues
227
+ documentation_uri: https://www.rubydoc.info/gems/rspec-pending_for/0.1.18
228
+ funding_uri: https://github.com/sponsors/pboling
229
+ wiki_uri: https://github.com/galtzo-floss/rspec-pending_for/wiki
230
+ news_uri: https://www.railsbling.com/tags/rspec-pending_for
231
+ discord_uri: https://discord.gg/3qme4XHNKN
232
+ rubygems_mfa_required: 'true'
123
233
  rdoc_options:
124
- - "--charset=UTF-8"
234
+ - "--title"
235
+ - rspec-pending_for - ⏳️ Mark specs pending or skipped for specified Ruby versions
236
+ or engines
237
+ - "--main"
238
+ - README.md
239
+ - "--exclude"
240
+ - "^sig/"
241
+ - "--line-numbers"
242
+ - "--inline-source"
243
+ - "--quiet"
125
244
  require_paths:
126
245
  - lib
127
246
  required_ruby_version: !ruby/object:Gem::Requirement
128
247
  requirements:
129
248
  - - ">="
130
249
  - !ruby/object:Gem::Version
131
- version: '0'
250
+ version: 1.8.7
132
251
  required_rubygems_version: !ruby/object:Gem::Requirement
133
252
  requirements:
134
253
  - - ">="
135
254
  - !ruby/object:Gem::Version
136
255
  version: '0'
137
256
  requirements: []
138
- rubygems_version: 3.2.3
139
- signing_key:
257
+ rubygems_version: 3.7.1
140
258
  specification_version: 4
141
- summary: Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby)
142
- / version combinations
259
+ summary: "⏳️ Mark specs pending or skipped for specified Ruby versions or engines"
143
260
  test_files: []
metadata.gz.sig ADDED
@@ -0,0 +1,3 @@
1
+ �KR#���<�x����43�z�������Z��Z�x��,��޶�5�U�� �q��z��2I?��@T�G�-}t��}�wtv��c*�c�#\+C��J* CMD�Q��:�m�l���j�5�bO�s��� �ah9�ᜩ/{
2
+ ,�#Bb�\C���nhU�&+�&�
3
+ �wN5?������}��s�wp����f*�4]��շ�{а�oP�=m-��?4r�2��HtӸ:Ta ���'K�"���C�3kb��gw�!��2�XL��d0\L���_V��.7y�9