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: 4d62012d6b37182ecd5ca7cd0e35a6fe7aaa8742395b0421e5125119e45d0bba
4
- data.tar.gz: 4d4051c2ba5edcc773233c4b1c841344f46c75957b00dc62c53b45d7d4c2c07a
3
+ metadata.gz: 67f1683c30ac25b6e91661475bf0085e58eed81b1ef4972e2b810090415fe4c0
4
+ data.tar.gz: 440a98a849911d1ddd34f06563e5bdff26bbd35d4465a04ba9e9904e46189e6e
5
5
  SHA512:
6
- metadata.gz: e12db0d05b2d308e9dcfc7a07b622428ed777541b3a385d1bcc5b69816c774731ff98f37e895063d199ce0056b3e3e4baed8df994a86423e6f1639ec613f347a
7
- data.tar.gz: a4d2e8cdce7df2d08b12df85dcccc1cc9fa1a8eaa182a6b1314b04110be9cce0a753e1ff3b72687ce15b88c60999ac2368a80db0152c68acab3b1f013df4e223
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
- detected_value = @constants.any? { |c| c.to_s == data.to_s }
10
- unless detected_value
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 detected_value, path
14
+ MatchResult.new detected_values.first, path
15
15
  end
16
16
 
17
17
  def to_openapi
@@ -1,3 +1,3 @@
1
1
  module RailsParamValidation
2
- VERSION = "0.7.0"
2
+ VERSION = "0.7.1"
3
3
  end
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.0
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: 2024-05-01 00:00:00.000000000 Z
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.3.26
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: []