dry-validation 0.12.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (204) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +696 -239
  3. data/LICENSE +1 -1
  4. data/README.md +15 -12
  5. data/config/errors.yml +3 -88
  6. data/dry-validation.gemspec +31 -17
  7. data/lib/dry-validation.rb +3 -1
  8. data/lib/dry/validation.rb +45 -28
  9. data/lib/dry/validation/config.rb +24 -0
  10. data/lib/dry/validation/constants.rb +43 -0
  11. data/lib/dry/validation/contract.rb +171 -0
  12. data/lib/dry/validation/contract/class_interface.rb +230 -0
  13. data/lib/dry/validation/evaluator.rb +224 -0
  14. data/lib/dry/validation/extensions/hints.rb +67 -0
  15. data/lib/dry/validation/extensions/monads.rb +24 -8
  16. data/lib/dry/validation/extensions/predicates_as_macros.rb +75 -0
  17. data/lib/dry/validation/failures.rb +70 -0
  18. data/lib/dry/validation/function.rb +44 -0
  19. data/lib/dry/validation/macro.rb +38 -0
  20. data/lib/dry/validation/macros.rb +104 -0
  21. data/lib/dry/validation/message.rb +80 -80
  22. data/lib/dry/validation/message_set.rb +80 -105
  23. data/lib/dry/validation/messages/resolver.rb +131 -0
  24. data/lib/dry/validation/result.rb +183 -41
  25. data/lib/dry/validation/rule.rb +135 -0
  26. data/lib/dry/validation/schema_ext.rb +19 -0
  27. data/lib/dry/validation/values.rb +104 -0
  28. data/lib/dry/validation/version.rb +3 -1
  29. metadata +47 -336
  30. data/.codeclimate.yml +0 -17
  31. data/.gitignore +0 -9
  32. data/.rspec +0 -3
  33. data/.travis.yml +0 -26
  34. data/CONTRIBUTING.md +0 -31
  35. data/Gemfile +0 -33
  36. data/Rakefile +0 -22
  37. data/benchmarks/benchmark_form_invalid.rb +0 -64
  38. data/benchmarks/benchmark_form_valid.rb +0 -64
  39. data/benchmarks/benchmark_schema_invalid_huge.rb +0 -52
  40. data/benchmarks/profile_schema_call_invalid.rb +0 -20
  41. data/benchmarks/profile_schema_call_valid.rb +0 -20
  42. data/benchmarks/profile_schema_definition.rb +0 -14
  43. data/benchmarks/profile_schema_huge_invalid.rb +0 -30
  44. data/benchmarks/profile_schema_messages_invalid.rb +0 -20
  45. data/benchmarks/suite.rb +0 -5
  46. data/examples/basic.rb +0 -15
  47. data/examples/each.rb +0 -14
  48. data/examples/json.rb +0 -12
  49. data/examples/multiple.rb +0 -27
  50. data/examples/nested.rb +0 -22
  51. data/examples/params.rb +0 -11
  52. data/lib/dry/validation/compat/form.rb +0 -67
  53. data/lib/dry/validation/deprecations.rb +0 -24
  54. data/lib/dry/validation/executor.rb +0 -91
  55. data/lib/dry/validation/extensions.rb +0 -7
  56. data/lib/dry/validation/extensions/struct.rb +0 -32
  57. data/lib/dry/validation/input_processor_compiler.rb +0 -135
  58. data/lib/dry/validation/input_processor_compiler/json.rb +0 -45
  59. data/lib/dry/validation/input_processor_compiler/params.rb +0 -49
  60. data/lib/dry/validation/input_processor_compiler/sanitizer.rb +0 -47
  61. data/lib/dry/validation/message_compiler.rb +0 -192
  62. data/lib/dry/validation/message_compiler/visitor_opts.rb +0 -37
  63. data/lib/dry/validation/messages.rb +0 -14
  64. data/lib/dry/validation/messages/abstract.rb +0 -112
  65. data/lib/dry/validation/messages/i18n.rb +0 -35
  66. data/lib/dry/validation/messages/namespaced.rb +0 -32
  67. data/lib/dry/validation/messages/yaml.rb +0 -54
  68. data/lib/dry/validation/predicate_registry.rb +0 -115
  69. data/lib/dry/validation/schema.rb +0 -126
  70. data/lib/dry/validation/schema/check.rb +0 -37
  71. data/lib/dry/validation/schema/class_interface.rb +0 -189
  72. data/lib/dry/validation/schema/deprecated.rb +0 -30
  73. data/lib/dry/validation/schema/dsl.rb +0 -118
  74. data/lib/dry/validation/schema/form.rb +0 -9
  75. data/lib/dry/validation/schema/json.rb +0 -21
  76. data/lib/dry/validation/schema/key.rb +0 -71
  77. data/lib/dry/validation/schema/params.rb +0 -22
  78. data/lib/dry/validation/schema/rule.rb +0 -202
  79. data/lib/dry/validation/schema/value.rb +0 -211
  80. data/lib/dry/validation/schema_compiler.rb +0 -81
  81. data/lib/dry/validation/type_specs.rb +0 -70
  82. data/spec/extensions/monads/result_spec.rb +0 -40
  83. data/spec/extensions/struct/schema_spec.rb +0 -32
  84. data/spec/fixtures/locales/en.yml +0 -6
  85. data/spec/fixtures/locales/pl.yml +0 -18
  86. data/spec/integration/custom_error_messages_spec.rb +0 -48
  87. data/spec/integration/custom_predicates_spec.rb +0 -228
  88. data/spec/integration/hints_spec.rb +0 -170
  89. data/spec/integration/injecting_rules_spec.rb +0 -30
  90. data/spec/integration/json/defining_base_schema_spec.rb +0 -41
  91. data/spec/integration/localized_error_messages_spec.rb +0 -72
  92. data/spec/integration/message_compiler_spec.rb +0 -405
  93. data/spec/integration/messages/i18n_spec.rb +0 -94
  94. data/spec/integration/optional_keys_spec.rb +0 -28
  95. data/spec/integration/params/predicates/array_spec.rb +0 -287
  96. data/spec/integration/params/predicates/empty_spec.rb +0 -263
  97. data/spec/integration/params/predicates/eql_spec.rb +0 -327
  98. data/spec/integration/params/predicates/even_spec.rb +0 -455
  99. data/spec/integration/params/predicates/excluded_from_spec.rb +0 -455
  100. data/spec/integration/params/predicates/excludes_spec.rb +0 -391
  101. data/spec/integration/params/predicates/false_spec.rb +0 -455
  102. data/spec/integration/params/predicates/filled_spec.rb +0 -467
  103. data/spec/integration/params/predicates/format_spec.rb +0 -454
  104. data/spec/integration/params/predicates/gt_spec.rb +0 -519
  105. data/spec/integration/params/predicates/gteq_spec.rb +0 -519
  106. data/spec/integration/params/predicates/included_in_spec.rb +0 -455
  107. data/spec/integration/params/predicates/includes_spec.rb +0 -391
  108. data/spec/integration/params/predicates/key_spec.rb +0 -67
  109. data/spec/integration/params/predicates/lt_spec.rb +0 -519
  110. data/spec/integration/params/predicates/lteq_spec.rb +0 -519
  111. data/spec/integration/params/predicates/max_size_spec.rb +0 -391
  112. data/spec/integration/params/predicates/min_size_spec.rb +0 -391
  113. data/spec/integration/params/predicates/none_spec.rb +0 -265
  114. data/spec/integration/params/predicates/not_eql_spec.rb +0 -327
  115. data/spec/integration/params/predicates/odd_spec.rb +0 -455
  116. data/spec/integration/params/predicates/size/fixed_spec.rb +0 -393
  117. data/spec/integration/params/predicates/size/range_spec.rb +0 -396
  118. data/spec/integration/params/predicates/true_spec.rb +0 -455
  119. data/spec/integration/params/predicates/type_spec.rb +0 -391
  120. data/spec/integration/result_spec.rb +0 -81
  121. data/spec/integration/schema/array_schema_spec.rb +0 -59
  122. data/spec/integration/schema/check_rules_spec.rb +0 -119
  123. data/spec/integration/schema/check_with_nested_el_spec.rb +0 -37
  124. data/spec/integration/schema/check_with_nth_el_spec.rb +0 -25
  125. data/spec/integration/schema/default_settings_spec.rb +0 -11
  126. data/spec/integration/schema/defining_base_schema_spec.rb +0 -41
  127. data/spec/integration/schema/dynamic_predicate_args_spec.rb +0 -43
  128. data/spec/integration/schema/each_with_set_spec.rb +0 -70
  129. data/spec/integration/schema/extending_dsl_spec.rb +0 -27
  130. data/spec/integration/schema/form_spec.rb +0 -236
  131. data/spec/integration/schema/hash_schema_spec.rb +0 -47
  132. data/spec/integration/schema/inheriting_schema_spec.rb +0 -31
  133. data/spec/integration/schema/input_processor_spec.rb +0 -46
  134. data/spec/integration/schema/json/explicit_types_spec.rb +0 -157
  135. data/spec/integration/schema/json_spec.rb +0 -163
  136. data/spec/integration/schema/macros/confirmation_spec.rb +0 -35
  137. data/spec/integration/schema/macros/each_spec.rb +0 -268
  138. data/spec/integration/schema/macros/filled_spec.rb +0 -87
  139. data/spec/integration/schema/macros/input_spec.rb +0 -139
  140. data/spec/integration/schema/macros/maybe_spec.rb +0 -99
  141. data/spec/integration/schema/macros/rule_spec.rb +0 -75
  142. data/spec/integration/schema/macros/value_spec.rb +0 -119
  143. data/spec/integration/schema/macros/when_spec.rb +0 -62
  144. data/spec/integration/schema/nested_schemas_spec.rb +0 -236
  145. data/spec/integration/schema/nested_values_spec.rb +0 -46
  146. data/spec/integration/schema/not_spec.rb +0 -34
  147. data/spec/integration/schema/numbers_spec.rb +0 -19
  148. data/spec/integration/schema/option_with_default_spec.rb +0 -64
  149. data/spec/integration/schema/or_spec.rb +0 -87
  150. data/spec/integration/schema/params/defining_base_schema_spec.rb +0 -41
  151. data/spec/integration/schema/params/explicit_types_spec.rb +0 -195
  152. data/spec/integration/schema/params_spec.rb +0 -234
  153. data/spec/integration/schema/predicate_verification_spec.rb +0 -9
  154. data/spec/integration/schema/predicates/array_spec.rb +0 -295
  155. data/spec/integration/schema/predicates/custom_spec.rb +0 -103
  156. data/spec/integration/schema/predicates/empty_spec.rb +0 -263
  157. data/spec/integration/schema/predicates/eql_spec.rb +0 -327
  158. data/spec/integration/schema/predicates/even_spec.rb +0 -455
  159. data/spec/integration/schema/predicates/excluded_from/array_spec.rb +0 -459
  160. data/spec/integration/schema/predicates/excluded_from/range_spec.rb +0 -459
  161. data/spec/integration/schema/predicates/excludes_spec.rb +0 -391
  162. data/spec/integration/schema/predicates/filled_spec.rb +0 -467
  163. data/spec/integration/schema/predicates/format_spec.rb +0 -455
  164. data/spec/integration/schema/predicates/gt_spec.rb +0 -519
  165. data/spec/integration/schema/predicates/gteq_spec.rb +0 -519
  166. data/spec/integration/schema/predicates/hash_spec.rb +0 -69
  167. data/spec/integration/schema/predicates/included_in/array_spec.rb +0 -459
  168. data/spec/integration/schema/predicates/included_in/range_spec.rb +0 -459
  169. data/spec/integration/schema/predicates/includes_spec.rb +0 -391
  170. data/spec/integration/schema/predicates/key_spec.rb +0 -88
  171. data/spec/integration/schema/predicates/lt_spec.rb +0 -520
  172. data/spec/integration/schema/predicates/lteq_spec.rb +0 -519
  173. data/spec/integration/schema/predicates/max_size_spec.rb +0 -391
  174. data/spec/integration/schema/predicates/min_size_spec.rb +0 -391
  175. data/spec/integration/schema/predicates/none_spec.rb +0 -265
  176. data/spec/integration/schema/predicates/not_eql_spec.rb +0 -391
  177. data/spec/integration/schema/predicates/odd_spec.rb +0 -455
  178. data/spec/integration/schema/predicates/size/fixed_spec.rb +0 -398
  179. data/spec/integration/schema/predicates/size/range_spec.rb +0 -395
  180. data/spec/integration/schema/predicates/type_spec.rb +0 -413
  181. data/spec/integration/schema/reusing_schema_spec.rb +0 -33
  182. data/spec/integration/schema/using_types_spec.rb +0 -135
  183. data/spec/integration/schema/validate_spec.rb +0 -120
  184. data/spec/integration/schema/xor_spec.rb +0 -35
  185. data/spec/integration/schema_builders_spec.rb +0 -17
  186. data/spec/integration/schema_spec.rb +0 -173
  187. data/spec/shared/message_compiler.rb +0 -11
  188. data/spec/shared/predicate_helper.rb +0 -15
  189. data/spec/shared/rule_compiler.rb +0 -8
  190. data/spec/spec_helper.rb +0 -58
  191. data/spec/support/define_struct.rb +0 -25
  192. data/spec/support/matchers.rb +0 -38
  193. data/spec/support/mutant.rb +0 -9
  194. data/spec/support/predicates_integration.rb +0 -7
  195. data/spec/unit/input_processor_compiler/json_spec.rb +0 -283
  196. data/spec/unit/input_processor_compiler/params_spec.rb +0 -328
  197. data/spec/unit/message_compiler/visit_failure_spec.rb +0 -38
  198. data/spec/unit/message_compiler/visit_spec.rb +0 -16
  199. data/spec/unit/message_compiler_spec.rb +0 -7
  200. data/spec/unit/predicate_registry_spec.rb +0 -34
  201. data/spec/unit/schema/key_spec.rb +0 -38
  202. data/spec/unit/schema/rule_spec.rb +0 -42
  203. data/spec/unit/schema/value_spec.rb +0 -131
  204. data/spec/unit/schema_spec.rb +0 -35
@@ -1,5 +1,7 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Dry
2
4
  module Validation
3
- VERSION = '0.12.0'.freeze
5
+ VERSION = "1.6.0"
4
6
  end
5
7
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-validation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 1.6.0
5
5
  platform: ruby
6
6
  authors:
7
- - Andy Holland
8
7
  - Piotr Solnica
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2018-05-31 00:00:00.000000000 Z
11
+ date: 2020-12-05 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: concurrent-ruby
@@ -26,93 +25,87 @@ dependencies:
26
25
  - !ruby/object:Gem::Version
27
26
  version: '1.0'
28
27
  - !ruby/object:Gem::Dependency
29
- name: dry-configurable
28
+ name: dry-container
30
29
  requirement: !ruby/object:Gem::Requirement
31
30
  requirements:
32
31
  - - "~>"
33
32
  - !ruby/object:Gem::Version
34
- version: '0.1'
33
+ version: '0.7'
35
34
  - - ">="
36
35
  - !ruby/object:Gem::Version
37
- version: 0.1.3
36
+ version: 0.7.1
38
37
  type: :runtime
39
38
  prerelease: false
40
39
  version_requirements: !ruby/object:Gem::Requirement
41
40
  requirements:
42
41
  - - "~>"
43
42
  - !ruby/object:Gem::Version
44
- version: '0.1'
43
+ version: '0.7'
45
44
  - - ">="
46
45
  - !ruby/object:Gem::Version
47
- version: 0.1.3
46
+ version: 0.7.1
48
47
  - !ruby/object:Gem::Dependency
49
- name: dry-equalizer
48
+ name: dry-core
50
49
  requirement: !ruby/object:Gem::Requirement
51
50
  requirements:
52
51
  - - "~>"
53
52
  - !ruby/object:Gem::Version
54
- version: '0.2'
53
+ version: '0.4'
55
54
  type: :runtime
56
55
  prerelease: false
57
56
  version_requirements: !ruby/object:Gem::Requirement
58
57
  requirements:
59
58
  - - "~>"
60
59
  - !ruby/object:Gem::Version
61
- version: '0.2'
60
+ version: '0.4'
62
61
  - !ruby/object:Gem::Dependency
63
- name: dry-logic
62
+ name: dry-equalizer
64
63
  requirement: !ruby/object:Gem::Requirement
65
64
  requirements:
66
65
  - - "~>"
67
66
  - !ruby/object:Gem::Version
68
- version: '0.4'
69
- - - ">="
70
- - !ruby/object:Gem::Version
71
- version: 0.4.0
67
+ version: '0.2'
72
68
  type: :runtime
73
69
  prerelease: false
74
70
  version_requirements: !ruby/object:Gem::Requirement
75
71
  requirements:
76
72
  - - "~>"
77
73
  - !ruby/object:Gem::Version
78
- version: '0.4'
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: 0.4.0
74
+ version: '0.2'
82
75
  - !ruby/object:Gem::Dependency
83
- name: dry-types
76
+ name: dry-initializer
84
77
  requirement: !ruby/object:Gem::Requirement
85
78
  requirements:
86
79
  - - "~>"
87
80
  - !ruby/object:Gem::Version
88
- version: 0.13.1
81
+ version: '3.0'
89
82
  type: :runtime
90
83
  prerelease: false
91
84
  version_requirements: !ruby/object:Gem::Requirement
92
85
  requirements:
93
86
  - - "~>"
94
87
  - !ruby/object:Gem::Version
95
- version: 0.13.1
88
+ version: '3.0'
96
89
  - !ruby/object:Gem::Dependency
97
- name: dry-core
90
+ name: dry-schema
98
91
  requirement: !ruby/object:Gem::Requirement
99
92
  requirements:
100
93
  - - "~>"
101
94
  - !ruby/object:Gem::Version
102
- version: '0.2'
95
+ version: '1.5'
103
96
  - - ">="
104
97
  - !ruby/object:Gem::Version
105
- version: 0.2.1
98
+ version: 1.5.2
106
99
  type: :runtime
107
100
  prerelease: false
108
101
  version_requirements: !ruby/object:Gem::Requirement
109
102
  requirements:
110
103
  - - "~>"
111
104
  - !ruby/object:Gem::Version
112
- version: '0.2'
105
+ version: '1.5'
113
106
  - - ">="
114
107
  - !ruby/object:Gem::Version
115
- version: 0.2.1
108
+ version: 1.5.2
116
109
  - !ruby/object:Gem::Dependency
117
110
  name: bundler
118
111
  requirement: !ruby/object:Gem::Requirement
@@ -155,206 +148,48 @@ dependencies:
155
148
  - - ">="
156
149
  - !ruby/object:Gem::Version
157
150
  version: '0'
158
- description:
151
+ description: Validation library
159
152
  email:
160
- - andyholland1991@aol.com
161
153
  - piotr.solnica@gmail.com
162
154
  executables: []
163
155
  extensions: []
164
156
  extra_rdoc_files: []
165
157
  files:
166
- - ".codeclimate.yml"
167
- - ".gitignore"
168
- - ".rspec"
169
- - ".travis.yml"
170
158
  - CHANGELOG.md
171
- - CONTRIBUTING.md
172
- - Gemfile
173
159
  - LICENSE
174
160
  - README.md
175
- - Rakefile
176
- - benchmarks/benchmark_form_invalid.rb
177
- - benchmarks/benchmark_form_valid.rb
178
- - benchmarks/benchmark_schema_invalid_huge.rb
179
- - benchmarks/profile_schema_call_invalid.rb
180
- - benchmarks/profile_schema_call_valid.rb
181
- - benchmarks/profile_schema_definition.rb
182
- - benchmarks/profile_schema_huge_invalid.rb
183
- - benchmarks/profile_schema_messages_invalid.rb
184
- - benchmarks/suite.rb
185
161
  - config/errors.yml
186
162
  - dry-validation.gemspec
187
- - examples/basic.rb
188
- - examples/each.rb
189
- - examples/json.rb
190
- - examples/multiple.rb
191
- - examples/nested.rb
192
- - examples/params.rb
193
163
  - lib/dry-validation.rb
194
164
  - lib/dry/validation.rb
195
- - lib/dry/validation/compat/form.rb
196
- - lib/dry/validation/deprecations.rb
197
- - lib/dry/validation/executor.rb
198
- - lib/dry/validation/extensions.rb
165
+ - lib/dry/validation/config.rb
166
+ - lib/dry/validation/constants.rb
167
+ - lib/dry/validation/contract.rb
168
+ - lib/dry/validation/contract/class_interface.rb
169
+ - lib/dry/validation/evaluator.rb
170
+ - lib/dry/validation/extensions/hints.rb
199
171
  - lib/dry/validation/extensions/monads.rb
200
- - lib/dry/validation/extensions/struct.rb
201
- - lib/dry/validation/input_processor_compiler.rb
202
- - lib/dry/validation/input_processor_compiler/json.rb
203
- - lib/dry/validation/input_processor_compiler/params.rb
204
- - lib/dry/validation/input_processor_compiler/sanitizer.rb
172
+ - lib/dry/validation/extensions/predicates_as_macros.rb
173
+ - lib/dry/validation/failures.rb
174
+ - lib/dry/validation/function.rb
175
+ - lib/dry/validation/macro.rb
176
+ - lib/dry/validation/macros.rb
205
177
  - lib/dry/validation/message.rb
206
- - lib/dry/validation/message_compiler.rb
207
- - lib/dry/validation/message_compiler/visitor_opts.rb
208
178
  - lib/dry/validation/message_set.rb
209
- - lib/dry/validation/messages.rb
210
- - lib/dry/validation/messages/abstract.rb
211
- - lib/dry/validation/messages/i18n.rb
212
- - lib/dry/validation/messages/namespaced.rb
213
- - lib/dry/validation/messages/yaml.rb
214
- - lib/dry/validation/predicate_registry.rb
179
+ - lib/dry/validation/messages/resolver.rb
215
180
  - lib/dry/validation/result.rb
216
- - lib/dry/validation/schema.rb
217
- - lib/dry/validation/schema/check.rb
218
- - lib/dry/validation/schema/class_interface.rb
219
- - lib/dry/validation/schema/deprecated.rb
220
- - lib/dry/validation/schema/dsl.rb
221
- - lib/dry/validation/schema/form.rb
222
- - lib/dry/validation/schema/json.rb
223
- - lib/dry/validation/schema/key.rb
224
- - lib/dry/validation/schema/params.rb
225
- - lib/dry/validation/schema/rule.rb
226
- - lib/dry/validation/schema/value.rb
227
- - lib/dry/validation/schema_compiler.rb
228
- - lib/dry/validation/type_specs.rb
181
+ - lib/dry/validation/rule.rb
182
+ - lib/dry/validation/schema_ext.rb
183
+ - lib/dry/validation/values.rb
229
184
  - lib/dry/validation/version.rb
230
- - log/.gitkeep
231
- - spec/extensions/monads/result_spec.rb
232
- - spec/extensions/struct/schema_spec.rb
233
- - spec/fixtures/locales/en.yml
234
- - spec/fixtures/locales/pl.yml
235
- - spec/integration/custom_error_messages_spec.rb
236
- - spec/integration/custom_predicates_spec.rb
237
- - spec/integration/hints_spec.rb
238
- - spec/integration/injecting_rules_spec.rb
239
- - spec/integration/json/defining_base_schema_spec.rb
240
- - spec/integration/localized_error_messages_spec.rb
241
- - spec/integration/message_compiler_spec.rb
242
- - spec/integration/messages/i18n_spec.rb
243
- - spec/integration/optional_keys_spec.rb
244
- - spec/integration/params/predicates/array_spec.rb
245
- - spec/integration/params/predicates/empty_spec.rb
246
- - spec/integration/params/predicates/eql_spec.rb
247
- - spec/integration/params/predicates/even_spec.rb
248
- - spec/integration/params/predicates/excluded_from_spec.rb
249
- - spec/integration/params/predicates/excludes_spec.rb
250
- - spec/integration/params/predicates/false_spec.rb
251
- - spec/integration/params/predicates/filled_spec.rb
252
- - spec/integration/params/predicates/format_spec.rb
253
- - spec/integration/params/predicates/gt_spec.rb
254
- - spec/integration/params/predicates/gteq_spec.rb
255
- - spec/integration/params/predicates/included_in_spec.rb
256
- - spec/integration/params/predicates/includes_spec.rb
257
- - spec/integration/params/predicates/key_spec.rb
258
- - spec/integration/params/predicates/lt_spec.rb
259
- - spec/integration/params/predicates/lteq_spec.rb
260
- - spec/integration/params/predicates/max_size_spec.rb
261
- - spec/integration/params/predicates/min_size_spec.rb
262
- - spec/integration/params/predicates/none_spec.rb
263
- - spec/integration/params/predicates/not_eql_spec.rb
264
- - spec/integration/params/predicates/odd_spec.rb
265
- - spec/integration/params/predicates/size/fixed_spec.rb
266
- - spec/integration/params/predicates/size/range_spec.rb
267
- - spec/integration/params/predicates/true_spec.rb
268
- - spec/integration/params/predicates/type_spec.rb
269
- - spec/integration/result_spec.rb
270
- - spec/integration/schema/array_schema_spec.rb
271
- - spec/integration/schema/check_rules_spec.rb
272
- - spec/integration/schema/check_with_nested_el_spec.rb
273
- - spec/integration/schema/check_with_nth_el_spec.rb
274
- - spec/integration/schema/default_settings_spec.rb
275
- - spec/integration/schema/defining_base_schema_spec.rb
276
- - spec/integration/schema/dynamic_predicate_args_spec.rb
277
- - spec/integration/schema/each_with_set_spec.rb
278
- - spec/integration/schema/extending_dsl_spec.rb
279
- - spec/integration/schema/form_spec.rb
280
- - spec/integration/schema/hash_schema_spec.rb
281
- - spec/integration/schema/inheriting_schema_spec.rb
282
- - spec/integration/schema/input_processor_spec.rb
283
- - spec/integration/schema/json/explicit_types_spec.rb
284
- - spec/integration/schema/json_spec.rb
285
- - spec/integration/schema/macros/confirmation_spec.rb
286
- - spec/integration/schema/macros/each_spec.rb
287
- - spec/integration/schema/macros/filled_spec.rb
288
- - spec/integration/schema/macros/input_spec.rb
289
- - spec/integration/schema/macros/maybe_spec.rb
290
- - spec/integration/schema/macros/rule_spec.rb
291
- - spec/integration/schema/macros/value_spec.rb
292
- - spec/integration/schema/macros/when_spec.rb
293
- - spec/integration/schema/nested_schemas_spec.rb
294
- - spec/integration/schema/nested_values_spec.rb
295
- - spec/integration/schema/not_spec.rb
296
- - spec/integration/schema/numbers_spec.rb
297
- - spec/integration/schema/option_with_default_spec.rb
298
- - spec/integration/schema/or_spec.rb
299
- - spec/integration/schema/params/defining_base_schema_spec.rb
300
- - spec/integration/schema/params/explicit_types_spec.rb
301
- - spec/integration/schema/params_spec.rb
302
- - spec/integration/schema/predicate_verification_spec.rb
303
- - spec/integration/schema/predicates/array_spec.rb
304
- - spec/integration/schema/predicates/custom_spec.rb
305
- - spec/integration/schema/predicates/empty_spec.rb
306
- - spec/integration/schema/predicates/eql_spec.rb
307
- - spec/integration/schema/predicates/even_spec.rb
308
- - spec/integration/schema/predicates/excluded_from/array_spec.rb
309
- - spec/integration/schema/predicates/excluded_from/range_spec.rb
310
- - spec/integration/schema/predicates/excludes_spec.rb
311
- - spec/integration/schema/predicates/filled_spec.rb
312
- - spec/integration/schema/predicates/format_spec.rb
313
- - spec/integration/schema/predicates/gt_spec.rb
314
- - spec/integration/schema/predicates/gteq_spec.rb
315
- - spec/integration/schema/predicates/hash_spec.rb
316
- - spec/integration/schema/predicates/included_in/array_spec.rb
317
- - spec/integration/schema/predicates/included_in/range_spec.rb
318
- - spec/integration/schema/predicates/includes_spec.rb
319
- - spec/integration/schema/predicates/key_spec.rb
320
- - spec/integration/schema/predicates/lt_spec.rb
321
- - spec/integration/schema/predicates/lteq_spec.rb
322
- - spec/integration/schema/predicates/max_size_spec.rb
323
- - spec/integration/schema/predicates/min_size_spec.rb
324
- - spec/integration/schema/predicates/none_spec.rb
325
- - spec/integration/schema/predicates/not_eql_spec.rb
326
- - spec/integration/schema/predicates/odd_spec.rb
327
- - spec/integration/schema/predicates/size/fixed_spec.rb
328
- - spec/integration/schema/predicates/size/range_spec.rb
329
- - spec/integration/schema/predicates/type_spec.rb
330
- - spec/integration/schema/reusing_schema_spec.rb
331
- - spec/integration/schema/using_types_spec.rb
332
- - spec/integration/schema/validate_spec.rb
333
- - spec/integration/schema/xor_spec.rb
334
- - spec/integration/schema_builders_spec.rb
335
- - spec/integration/schema_spec.rb
336
- - spec/shared/message_compiler.rb
337
- - spec/shared/predicate_helper.rb
338
- - spec/shared/rule_compiler.rb
339
- - spec/spec_helper.rb
340
- - spec/support/define_struct.rb
341
- - spec/support/matchers.rb
342
- - spec/support/mutant.rb
343
- - spec/support/predicates_integration.rb
344
- - spec/unit/input_processor_compiler/json_spec.rb
345
- - spec/unit/input_processor_compiler/params_spec.rb
346
- - spec/unit/message_compiler/visit_failure_spec.rb
347
- - spec/unit/message_compiler/visit_spec.rb
348
- - spec/unit/message_compiler_spec.rb
349
- - spec/unit/predicate_registry_spec.rb
350
- - spec/unit/schema/key_spec.rb
351
- - spec/unit/schema/rule_spec.rb
352
- - spec/unit/schema/value_spec.rb
353
- - spec/unit/schema_spec.rb
354
- homepage: https://github.com/dry-rb/dry-validation
185
+ homepage: https://dry-rb.org/gems/dry-validation
355
186
  licenses:
356
187
  - MIT
357
- metadata: {}
188
+ metadata:
189
+ allowed_push_host: https://rubygems.org
190
+ changelog_uri: https://github.com/dry-rb/dry-validation/blob/master/CHANGELOG.md
191
+ source_code_uri: https://github.com/dry-rb/dry-validation
192
+ bug_tracker_uri: https://github.com/dry-rb/dry-validation/issues
358
193
  post_install_message:
359
194
  rdoc_options: []
360
195
  require_paths:
@@ -363,139 +198,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
363
198
  requirements:
364
199
  - - ">="
365
200
  - !ruby/object:Gem::Version
366
- version: '0'
201
+ version: 2.5.0
367
202
  required_rubygems_version: !ruby/object:Gem::Requirement
368
203
  requirements:
369
204
  - - ">="
370
205
  - !ruby/object:Gem::Version
371
206
  version: '0'
372
207
  requirements: []
373
- rubyforge_project:
374
- rubygems_version: 2.7.6
208
+ rubygems_version: 3.1.4
375
209
  signing_key:
376
210
  specification_version: 4
377
- summary: A simple validation library
378
- test_files:
379
- - spec/extensions/monads/result_spec.rb
380
- - spec/extensions/struct/schema_spec.rb
381
- - spec/fixtures/locales/en.yml
382
- - spec/fixtures/locales/pl.yml
383
- - spec/integration/custom_error_messages_spec.rb
384
- - spec/integration/custom_predicates_spec.rb
385
- - spec/integration/hints_spec.rb
386
- - spec/integration/injecting_rules_spec.rb
387
- - spec/integration/json/defining_base_schema_spec.rb
388
- - spec/integration/localized_error_messages_spec.rb
389
- - spec/integration/message_compiler_spec.rb
390
- - spec/integration/messages/i18n_spec.rb
391
- - spec/integration/optional_keys_spec.rb
392
- - spec/integration/params/predicates/array_spec.rb
393
- - spec/integration/params/predicates/empty_spec.rb
394
- - spec/integration/params/predicates/eql_spec.rb
395
- - spec/integration/params/predicates/even_spec.rb
396
- - spec/integration/params/predicates/excluded_from_spec.rb
397
- - spec/integration/params/predicates/excludes_spec.rb
398
- - spec/integration/params/predicates/false_spec.rb
399
- - spec/integration/params/predicates/filled_spec.rb
400
- - spec/integration/params/predicates/format_spec.rb
401
- - spec/integration/params/predicates/gt_spec.rb
402
- - spec/integration/params/predicates/gteq_spec.rb
403
- - spec/integration/params/predicates/included_in_spec.rb
404
- - spec/integration/params/predicates/includes_spec.rb
405
- - spec/integration/params/predicates/key_spec.rb
406
- - spec/integration/params/predicates/lt_spec.rb
407
- - spec/integration/params/predicates/lteq_spec.rb
408
- - spec/integration/params/predicates/max_size_spec.rb
409
- - spec/integration/params/predicates/min_size_spec.rb
410
- - spec/integration/params/predicates/none_spec.rb
411
- - spec/integration/params/predicates/not_eql_spec.rb
412
- - spec/integration/params/predicates/odd_spec.rb
413
- - spec/integration/params/predicates/size/fixed_spec.rb
414
- - spec/integration/params/predicates/size/range_spec.rb
415
- - spec/integration/params/predicates/true_spec.rb
416
- - spec/integration/params/predicates/type_spec.rb
417
- - spec/integration/result_spec.rb
418
- - spec/integration/schema/array_schema_spec.rb
419
- - spec/integration/schema/check_rules_spec.rb
420
- - spec/integration/schema/check_with_nested_el_spec.rb
421
- - spec/integration/schema/check_with_nth_el_spec.rb
422
- - spec/integration/schema/default_settings_spec.rb
423
- - spec/integration/schema/defining_base_schema_spec.rb
424
- - spec/integration/schema/dynamic_predicate_args_spec.rb
425
- - spec/integration/schema/each_with_set_spec.rb
426
- - spec/integration/schema/extending_dsl_spec.rb
427
- - spec/integration/schema/form_spec.rb
428
- - spec/integration/schema/hash_schema_spec.rb
429
- - spec/integration/schema/inheriting_schema_spec.rb
430
- - spec/integration/schema/input_processor_spec.rb
431
- - spec/integration/schema/json/explicit_types_spec.rb
432
- - spec/integration/schema/json_spec.rb
433
- - spec/integration/schema/macros/confirmation_spec.rb
434
- - spec/integration/schema/macros/each_spec.rb
435
- - spec/integration/schema/macros/filled_spec.rb
436
- - spec/integration/schema/macros/input_spec.rb
437
- - spec/integration/schema/macros/maybe_spec.rb
438
- - spec/integration/schema/macros/rule_spec.rb
439
- - spec/integration/schema/macros/value_spec.rb
440
- - spec/integration/schema/macros/when_spec.rb
441
- - spec/integration/schema/nested_schemas_spec.rb
442
- - spec/integration/schema/nested_values_spec.rb
443
- - spec/integration/schema/not_spec.rb
444
- - spec/integration/schema/numbers_spec.rb
445
- - spec/integration/schema/option_with_default_spec.rb
446
- - spec/integration/schema/or_spec.rb
447
- - spec/integration/schema/params/defining_base_schema_spec.rb
448
- - spec/integration/schema/params/explicit_types_spec.rb
449
- - spec/integration/schema/params_spec.rb
450
- - spec/integration/schema/predicate_verification_spec.rb
451
- - spec/integration/schema/predicates/array_spec.rb
452
- - spec/integration/schema/predicates/custom_spec.rb
453
- - spec/integration/schema/predicates/empty_spec.rb
454
- - spec/integration/schema/predicates/eql_spec.rb
455
- - spec/integration/schema/predicates/even_spec.rb
456
- - spec/integration/schema/predicates/excluded_from/array_spec.rb
457
- - spec/integration/schema/predicates/excluded_from/range_spec.rb
458
- - spec/integration/schema/predicates/excludes_spec.rb
459
- - spec/integration/schema/predicates/filled_spec.rb
460
- - spec/integration/schema/predicates/format_spec.rb
461
- - spec/integration/schema/predicates/gt_spec.rb
462
- - spec/integration/schema/predicates/gteq_spec.rb
463
- - spec/integration/schema/predicates/hash_spec.rb
464
- - spec/integration/schema/predicates/included_in/array_spec.rb
465
- - spec/integration/schema/predicates/included_in/range_spec.rb
466
- - spec/integration/schema/predicates/includes_spec.rb
467
- - spec/integration/schema/predicates/key_spec.rb
468
- - spec/integration/schema/predicates/lt_spec.rb
469
- - spec/integration/schema/predicates/lteq_spec.rb
470
- - spec/integration/schema/predicates/max_size_spec.rb
471
- - spec/integration/schema/predicates/min_size_spec.rb
472
- - spec/integration/schema/predicates/none_spec.rb
473
- - spec/integration/schema/predicates/not_eql_spec.rb
474
- - spec/integration/schema/predicates/odd_spec.rb
475
- - spec/integration/schema/predicates/size/fixed_spec.rb
476
- - spec/integration/schema/predicates/size/range_spec.rb
477
- - spec/integration/schema/predicates/type_spec.rb
478
- - spec/integration/schema/reusing_schema_spec.rb
479
- - spec/integration/schema/using_types_spec.rb
480
- - spec/integration/schema/validate_spec.rb
481
- - spec/integration/schema/xor_spec.rb
482
- - spec/integration/schema_builders_spec.rb
483
- - spec/integration/schema_spec.rb
484
- - spec/shared/message_compiler.rb
485
- - spec/shared/predicate_helper.rb
486
- - spec/shared/rule_compiler.rb
487
- - spec/spec_helper.rb
488
- - spec/support/define_struct.rb
489
- - spec/support/matchers.rb
490
- - spec/support/mutant.rb
491
- - spec/support/predicates_integration.rb
492
- - spec/unit/input_processor_compiler/json_spec.rb
493
- - spec/unit/input_processor_compiler/params_spec.rb
494
- - spec/unit/message_compiler/visit_failure_spec.rb
495
- - spec/unit/message_compiler/visit_spec.rb
496
- - spec/unit/message_compiler_spec.rb
497
- - spec/unit/predicate_registry_spec.rb
498
- - spec/unit/schema/key_spec.rb
499
- - spec/unit/schema/rule_spec.rb
500
- - spec/unit/schema/value_spec.rb
501
- - spec/unit/schema_spec.rb
211
+ summary: Validation library
212
+ test_files: []