rspec-wait 1.0.1 → 1.0.2

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: 571ec853f48e6b4c04f9703dfdb118c79840e1faaa344505f47663c031e27178
4
- data.tar.gz: e72a55bdd7cce040dca8d217935d63cbd9c5ee20684df327636d6d7c2adbbfb3
3
+ metadata.gz: 55f8fdc4fbf01436c126c7f63222bb40289c1b38fcf6713ad8487c44ead3dd3d
4
+ data.tar.gz: 530916922b1c6664b0935a8dc3c8fe47ba7d07e1ae09b9cd6617bf3eadbf6d00
5
5
  SHA512:
6
- metadata.gz: 7a5d8c9a6d1a454f21bf942675d19961b0def0168c4fc33c17ba8c433a9e9a2d9b53e853e56f4917904344f09067b404ad14d7bcf594e840be2494d29a7755ba
7
- data.tar.gz: 8b788a45f5eab52470a01aaa9869ae7c596682a523a2b8a9beacfa7934bcb20f42d529404d9a8b7f7c6056dafca5adcdeba17536f129fb0dca7deda408221895
6
+ metadata.gz: 7ff2dbcbcf29b6545febf099dffb92f506ba839869d3e18313b2001e83d80386e920c0e64b4bb0d1e3d0dc229ad0b1be768eb67ef04a3918db6ffb066ade67cf
7
+ data.tar.gz: 1ff590e0c1acc3a7597f8bd500624c08b99d3e10a3a550a6361fceb75bce52bffb50e340a87a0eb4695dbfea757f8717abb1617b39bbc945021fe364d917b622
data/README.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # RSpec::Wait
2
2
 
3
- Wait for conditions in RSpec
3
+ Time-resilient expectations in RSpec
4
+
5
+ [![Made by laserlemon](https://img.shields.io/badge/laser-lemon-fc0?style=flat-square)](https://github.com/laserlemon)
6
+ [![Gem version](https://img.shields.io/gem/v/rspec-wait?style=flat-square)](https://rubygems.org/gems/rspec-wait)
7
+ [![Build status](https://img.shields.io/github/actions/workflow/status/laserlemon/rspec-wait/test.yml?style=flat-square)](https://github.com/laserlemon/rspec-wait/actions/workflows/test.yml)
4
8
 
5
- [![Gem Version](https://img.shields.io/gem/v/rspec-wait)](http://rubygems.org/gems/rspec-wait)
6
- [![Build Status](https://img.shields.io/github/actions/workflow/status/laserlemon/rspec-wait/rake.yml)](https://github.com/laserlemon/rspec-wait/actions/workflows/rake.yml)
7
- [![License](https://img.shields.io/github/license/laserlemon/rspec-wait)](https://github.com/laserlemon/rspec-wait/blob/-/LICENSE.txt)
8
9
 
9
10
  ## Why does RSpec::Wait exist?
10
11
 
@@ -181,7 +182,7 @@ per-context basis using `wait` metadata. Provide a hash containing any
181
182
  number of shorthand keys and values for RSpec::Wait's configurations.
182
183
 
183
184
  ```ruby
184
- scenario "A user can log in successfully", wait: { timeout: 3, delay: 0.5, clone_wait_matcher: true } do
185
+ scenario "A user can log in successfully", wait: { timeout: 3, delay: 0.5, clone_matcher: true } do
185
186
  visit new_session_path
186
187
 
187
188
  fill_in "Email", with: "john@example.com"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RSpec
4
4
  module Wait
5
- VERSION = ::Gem::Version.new("1.0.1")
5
+ VERSION = ::Gem::Version.new("1.0.2")
6
6
  end
7
7
  end
data/rspec-wait.gemspec CHANGED
@@ -4,7 +4,7 @@ require_relative "lib/rspec/wait/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "rspec-wait"
7
- spec.summary = "Wait for conditions in RSpec"
7
+ spec.summary = "Time-resilient expectations in RSpec"
8
8
  spec.description = "RSpec::Wait enables time-resilient expectations in your RSpec test suite."
9
9
  spec.version = RSpec::Wait::VERSION
10
10
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-wait
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Steve Richert
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-06-24 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: rspec
@@ -78,7 +77,6 @@ metadata:
78
77
  homepage_uri: https://github.com/laserlemon/rspec-wait
79
78
  rubygems_mfa_required: 'true'
80
79
  source_code_uri: https://github.com/laserlemon/rspec-wait
81
- post_install_message:
82
80
  rdoc_options: []
83
81
  require_paths:
84
82
  - lib
@@ -93,8 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
91
  - !ruby/object:Gem::Version
94
92
  version: '0'
95
93
  requirements: []
96
- rubygems_version: 3.4.19
97
- signing_key:
94
+ rubygems_version: 3.6.7
98
95
  specification_version: 4
99
- summary: Wait for conditions in RSpec
96
+ summary: Time-resilient expectations in RSpec
100
97
  test_files: []