rails-param-validation 0.7.0 → 0.7.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 67f1683c30ac25b6e91661475bf0085e58eed81b1ef4972e2b810090415fe4c0
|
4
|
+
data.tar.gz: 440a98a849911d1ddd34f06563e5bdff26bbd35d4465a04ba9e9904e46189e6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfe1b4203c427fcab593998368e70952b885ae38b7ea1190bf71d7c38c5c3c362e4c5f0c1927ccaf8ac3be7a6e08f1388438c313b22bf07f14132e0b74ce001a
|
7
|
+
data.tar.gz: 496732fbf6e778108933fc9bdc0ccc62e37477f85e2f9242b2c468eb0b0945be463b26f977b2272b6b44189b4ed7dd140eba01365b39643e88c8e3329bf738da
|
data/bin/.keep
CHANGED
File without changes
|
@@ -6,12 +6,12 @@ module RailsParamValidation
|
|
6
6
|
end
|
7
7
|
|
8
8
|
def matches?(path, data)
|
9
|
-
|
10
|
-
unless
|
9
|
+
detected_values = @constants.select { |c| c.to_s == data.to_s }
|
10
|
+
unless detected_values.any?
|
11
11
|
return MatchResult.new(nil, path, "The value is not one of the allowed constants")
|
12
12
|
end
|
13
13
|
|
14
|
-
MatchResult.new
|
14
|
+
MatchResult.new detected_values.first, path
|
15
15
|
end
|
16
16
|
|
17
17
|
def to_openapi
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-param-validation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oskar Kirmis
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Declarative parameter definition and validation for Rails
|
14
14
|
email:
|
@@ -79,7 +79,7 @@ metadata:
|
|
79
79
|
homepage_uri: https://okirmis.github.io/rails-param-validation
|
80
80
|
source_code_uri: https://github.com/okirmis/rails-param-validation
|
81
81
|
changelog_uri: https://github.com/okirmis/rails-param-validation
|
82
|
-
post_install_message:
|
82
|
+
post_install_message:
|
83
83
|
rdoc_options: []
|
84
84
|
require_paths:
|
85
85
|
- lib
|
@@ -94,8 +94,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
94
|
- !ruby/object:Gem::Version
|
95
95
|
version: '0'
|
96
96
|
requirements: []
|
97
|
-
rubygems_version: 3.
|
98
|
-
signing_key:
|
97
|
+
rubygems_version: 3.5.10
|
98
|
+
signing_key:
|
99
99
|
specification_version: 4
|
100
100
|
summary: Declarative parameter definition and validation for Rails
|
101
101
|
test_files: []
|