minitest-matchers_vaccine 1.0.7 → 1.1.0

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: 19b40afb7eb15527486e63a0c8471b04a6d8e10fd110a6f55d1a1f027fe073a6
4
- data.tar.gz: fc091fb992b0a564d85c9ce12772e49dd79ed593668d940c411c8d2df3593e3b
3
+ metadata.gz: eb6c8e60d766a65d34a1e42a07b6e51a6796d874ab273ac68eb111b14d209bde
4
+ data.tar.gz: 67623aba1da656d138e108a431ef36f958a7d7d0b4b9fe9d5149e2cc0a46780d
5
5
  SHA512:
6
- metadata.gz: 0f94c0462f692b2ecb00dd7742a8a061bac981a1afb2ed16076bd27a7972b0112eb5a22c8aa01cca588d3094ed28369e74eded6923d54384f4ff63dad43fe8c5
7
- data.tar.gz: f9ddda4c3e7f1ee7ea87e3966a5514ad8eb8d9a75fed594a3f920f566773c87c405101388797866abfcd0da5fd5a1fd530a076772c41b592777bd38945265bf3
6
+ metadata.gz: e1858263b3f457492d71f8c3b10ab9db79a70ed6291534661e707a9195c264b8967318f69210286aa92cb2f1cdc99774d69166228e935148e5ed7f7eba8ec9c5
7
+ data.tar.gz: c7e827348d9d085617df876033f64bf94de49c97a65b47d242ae90b8ad078087954b6b0e3fc86b27b54d11c97ca2d87f6ade075b09a6a387db445ce85438bfdc
data/README.md CHANGED
@@ -77,20 +77,20 @@ describe User do
77
77
  subject { User.new }
78
78
 
79
79
  # Works with shoulda-matchers
80
- it "should have fields and associations" do
80
+ it "has fields and associations" do
81
81
  must have_db_column :name
82
82
  must belong_to :account
83
83
  must have_many :widgets
84
84
  end
85
85
 
86
86
  # Works with valid_attribute
87
- it "should validate" do
87
+ it "validates" do
88
88
  must have_valid(:email).when("a@a.com", "foo@bar.com", "dave@abc.io")
89
89
  wont have_valid(:email).when(nil, "foo", "foo@bar", "@bar.com")
90
90
  end
91
91
 
92
92
  # Works with matchers in other libs
93
- it "should strip attributes" do
93
+ it "strips attributes" do
94
94
  must strip_attribute :name
95
95
  end
96
96
  end
@@ -1,5 +1,5 @@
1
1
  module Minitest
2
2
  module MatchersVaccine
3
- VERSION = "1.0.7"
3
+ VERSION = "1.1.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,29 +1,34 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest-matchers_vaccine
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan McGeary
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-10 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: minitest
15
14
  requirement: !ruby/object:Gem::Requirement
16
15
  requirements:
17
- - - "~>"
16
+ - - ">="
18
17
  - !ruby/object:Gem::Version
19
18
  version: '5.0'
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '7.0'
20
22
  type: :runtime
21
23
  prerelease: false
22
24
  version_requirements: !ruby/object:Gem::Requirement
23
25
  requirements:
24
- - - "~>"
26
+ - - ">="
25
27
  - !ruby/object:Gem::Version
26
28
  version: '5.0'
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '7.0'
27
32
  - !ruby/object:Gem::Dependency
28
33
  name: rake
29
34
  requirement: !ruby/object:Gem::Requirement
@@ -59,7 +64,6 @@ metadata:
59
64
  changelog_uri: https://github.com/rmm5t/minitest-matchers_vaccine/blob/master/CHANGELOG.md
60
65
  source_code_uri: https://github.com/rmm5t/minitest-matchers_vaccine
61
66
  funding_uri: https://github.com/sponsors/rmm5t
62
- post_install_message:
63
67
  rdoc_options: []
64
68
  require_paths:
65
69
  - lib
@@ -74,8 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
78
  - !ruby/object:Gem::Version
75
79
  version: '0'
76
80
  requirements: []
77
- rubygems_version: 3.5.23
78
- signing_key:
81
+ rubygems_version: 4.0.1
79
82
  specification_version: 4
80
83
  summary: Adds support for RSpec-style matchers to minitest.
81
84
  test_files: