soft-assert 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.
Files changed (2) hide show
  1. checksums.yaml +4 -4
  2. metadata +15 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eb81441be8c11199af42c789dbb2650a1cfefddaa24a270fdcd9ce81102c620c
4
- data.tar.gz: 480fde6e0494d612d0a901bd02fbe69b42ee0db859d8a1485125d3953d3230f3
3
+ metadata.gz: 955cff3e3daa156a16999d5d4e2e4c570f974cebbeeac86e71eca4a0e053ca2a
4
+ data.tar.gz: 040e5d3c564a106242dff679ee19af47a4b68cda99b8f65a0b8fc7d6fb490ff7
5
5
  SHA512:
6
- metadata.gz: 0f43847e8520c7f49b46f51aae078211d73525b615032066c21dec5a273376e07cffb6b136077fb07872091e161fde928a055214b10e7b324a2aa1ef1807926a
7
- data.tar.gz: f6762dd17f3ebce40e997eecfec8a739140f8245cf7cd75eb7d05ecfe49fef6cde158c48ba111887b05e2ecc72b3bd7b76a55bba0b8ce7dd873f201031d2419c
6
+ metadata.gz: 416a1dce755674c5f904fc43663870f09ea333956e7a0c2c84701d756c380b615afae8f8c963e512dc4a5bba5ea6ba499ed32ec08c3f2b4f514415aa82a5c587
7
+ data.tar.gz: 17225fdb4b8035bb6ad4bb3d5ab7f7241077053e8e7dffe781a7454bf0f57266c76ffb9f1e2ada345dd0b4008a93e9a9b8524e43dd4c9a492f8cc4294e28ac6c
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soft-assert
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
  - Ashitha Rao
@@ -16,6 +16,9 @@ dependencies:
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
18
  - - "~>"
19
+ - !ruby/object:Gem::Version
20
+ version: '5.20'
21
+ - - ">"
19
22
  - !ruby/object:Gem::Version
20
23
  version: 5.20.0
21
24
  type: :runtime
@@ -23,6 +26,9 @@ dependencies:
23
26
  version_requirements: !ruby/object:Gem::Requirement
24
27
  requirements:
25
28
  - - "~>"
29
+ - !ruby/object:Gem::Version
30
+ version: '5.20'
31
+ - - ">"
26
32
  - !ruby/object:Gem::Version
27
33
  version: 5.20.0
28
34
  - !ruby/object:Gem::Dependency
@@ -31,14 +37,20 @@ dependencies:
31
37
  requirements:
32
38
  - - "~>"
33
39
  - !ruby/object:Gem::Version
34
- version: 3.6.1
40
+ version: '3.6'
41
+ - - ">"
42
+ - !ruby/object:Gem::Version
43
+ version: 3.6.0
35
44
  type: :runtime
36
45
  prerelease: false
37
46
  version_requirements: !ruby/object:Gem::Requirement
38
47
  requirements:
39
48
  - - "~>"
40
49
  - !ruby/object:Gem::Version
41
- version: 3.6.1
50
+ version: '3.6'
51
+ - - ">"
52
+ - !ruby/object:Gem::Version
53
+ version: 3.6.0
42
54
  description: |-
43
55
  The Soft Assert gem enhances testing capabilities with flexible assertion methods.Unlike traditional assertions, Soft Assert does not interrupt test execution on failure. Instead, it logs errors and continues testing, allowing you to identify and review all failures simultaneously. This gem integrates smoothly with leading testing frameworks, including Minitest and Test::Unit, making comprehensive testing more efficient.
44
56
  To utilize Soft Assert effectively, simply use its assertion methods during testing. Then, conclude with SoftAssert.assert_all to review and fail the test if any failures were captured.