validator-matchers 0.0.3 → 0.0.4
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/validator/matchers/version.rb +1 -1
- data/validator-matchers.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2c1f7d659b11c8a188407299f5af2e5d526e7eccb7686bfdf35720011d535b16
|
|
4
|
+
data.tar.gz: 4c9b263f69806510b62bddd94f912a8ed11014921b34c334cd787709f72f44cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e44b48ef54dc811dca0613351d61e4b1332e43e1f9744e0ff0fe50e8e1d9851102f9c8f72b81b152909cb5c7d52f746328be5209da404cae4dc660239a7cd09
|
|
7
|
+
data.tar.gz: 72833b305492ac2a31664016bea2bede4d89e9ecef85429ac91fe60124997b9301de04ca6f70be7cf4ad8ec8e5a3406ecb42d0481f201a3f905bac7a60c918a8
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ Historical changelog for all versions.
|
|
|
4
4
|
|
|
5
5
|
## HEAD
|
|
6
6
|
|
|
7
|
+
## v0.0.4
|
|
8
|
+
|
|
9
|
+
* Update RSpec version lock to allow for Rails 7.1 support [#1](https://github.com/joshbuker/validator-matchers/pull/1)
|
|
10
|
+
|
|
7
11
|
## v0.0.3
|
|
8
12
|
|
|
9
13
|
* Fix dynamic validator not allowing different attributes
|
data/validator-matchers.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: validator-matchers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Josh Buker
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-12-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec-rails
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3.0'
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: '
|
|
22
|
+
version: '7'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3.0'
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '7'
|
|
33
33
|
description:
|
|
34
34
|
email: crypto@joshbuker.com
|
|
35
35
|
executables: []
|
|
@@ -51,9 +51,9 @@ licenses:
|
|
|
51
51
|
- MIT
|
|
52
52
|
metadata:
|
|
53
53
|
bug_tracker_uri: https://github.com/athix/validator-matchers/issues
|
|
54
|
-
changelog_uri: https://github.com/athix/validator-matchers/releases/tag/v0.0.
|
|
54
|
+
changelog_uri: https://github.com/athix/validator-matchers/releases/tag/v0.0.4
|
|
55
55
|
documentation_uri: https://rubydoc.info/gems/validator-matchers
|
|
56
|
-
source_code_uri: https://github.com/athix/validator-matchers/tree/v0.0.
|
|
56
|
+
source_code_uri: https://github.com/athix/validator-matchers/tree/v0.0.4
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
59
59
|
require_paths:
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.3.5
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: RSpec matchers for your custom validator unit testing
|