dry-validation 0.13.3 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +233 -12
- data/LICENSE +1 -1
- data/README.md +13 -9
- data/config/errors.yml +3 -88
- data/lib/dry-validation.rb +2 -0
- data/lib/dry/validation.rb +47 -28
- data/lib/dry/validation/config.rb +24 -0
- data/lib/dry/validation/constants.rb +43 -0
- data/lib/dry/validation/contract.rb +160 -0
- data/lib/dry/validation/contract/class_interface.rb +223 -0
- data/lib/dry/validation/evaluator.rb +197 -0
- data/lib/dry/validation/extensions/hints.rb +69 -0
- data/lib/dry/validation/extensions/monads.rb +23 -7
- data/lib/dry/validation/extensions/predicates_as_macros.rb +75 -0
- data/lib/dry/validation/failures.rb +58 -0
- data/lib/dry/validation/function.rb +44 -0
- data/lib/dry/validation/macro.rb +38 -0
- data/lib/dry/validation/macros.rb +104 -0
- data/lib/dry/validation/message.rb +79 -79
- data/lib/dry/validation/message_set.rb +108 -88
- data/lib/dry/validation/messages/resolver.rb +79 -0
- data/lib/dry/validation/result.rb +154 -42
- data/lib/dry/validation/rule.rb +129 -0
- data/lib/dry/validation/schema_ext.rb +46 -0
- data/lib/dry/validation/values.rb +94 -0
- data/lib/dry/validation/version.rb +3 -1
- metadata +41 -336
- data/.codeclimate.yml +0 -17
- data/.gitignore +0 -9
- data/.rspec +0 -3
- data/.travis.yml +0 -29
- data/CONTRIBUTING.md +0 -31
- data/Gemfile +0 -25
- data/Rakefile +0 -22
- data/benchmarks/benchmark_form_invalid.rb +0 -64
- data/benchmarks/benchmark_form_valid.rb +0 -64
- data/benchmarks/benchmark_schema_invalid_huge.rb +0 -52
- data/benchmarks/profile_schema_call_invalid.rb +0 -20
- data/benchmarks/profile_schema_call_valid.rb +0 -20
- data/benchmarks/profile_schema_definition.rb +0 -14
- data/benchmarks/profile_schema_huge_invalid.rb +0 -30
- data/benchmarks/profile_schema_messages_invalid.rb +0 -20
- data/benchmarks/suite.rb +0 -5
- data/dry-validation.gemspec +0 -28
- data/examples/basic.rb +0 -15
- data/examples/each.rb +0 -14
- data/examples/json.rb +0 -12
- data/examples/multiple.rb +0 -27
- data/examples/nested.rb +0 -22
- data/examples/params.rb +0 -11
- data/lib/dry/validation/compat/form.rb +0 -67
- data/lib/dry/validation/deprecations.rb +0 -24
- data/lib/dry/validation/executor.rb +0 -91
- data/lib/dry/validation/extensions.rb +0 -7
- data/lib/dry/validation/extensions/struct.rb +0 -32
- data/lib/dry/validation/input_processor_compiler.rb +0 -137
- data/lib/dry/validation/input_processor_compiler/json.rb +0 -45
- data/lib/dry/validation/input_processor_compiler/params.rb +0 -49
- data/lib/dry/validation/input_processor_compiler/sanitizer.rb +0 -47
- data/lib/dry/validation/message_compiler.rb +0 -188
- data/lib/dry/validation/message_compiler/visitor_opts.rb +0 -37
- data/lib/dry/validation/messages.rb +0 -14
- data/lib/dry/validation/messages/abstract.rb +0 -119
- data/lib/dry/validation/messages/i18n.rb +0 -47
- data/lib/dry/validation/messages/namespaced.rb +0 -39
- data/lib/dry/validation/messages/yaml.rb +0 -61
- data/lib/dry/validation/predicate_registry.rb +0 -115
- data/lib/dry/validation/predicates.rb +0 -19
- data/lib/dry/validation/schema.rb +0 -126
- data/lib/dry/validation/schema/check.rb +0 -37
- data/lib/dry/validation/schema/class_interface.rb +0 -190
- data/lib/dry/validation/schema/deprecated.rb +0 -30
- data/lib/dry/validation/schema/dsl.rb +0 -118
- data/lib/dry/validation/schema/form.rb +0 -9
- data/lib/dry/validation/schema/json.rb +0 -21
- data/lib/dry/validation/schema/key.rb +0 -71
- data/lib/dry/validation/schema/params.rb +0 -22
- data/lib/dry/validation/schema/rule.rb +0 -202
- data/lib/dry/validation/schema/value.rb +0 -211
- data/lib/dry/validation/schema_compiler.rb +0 -81
- data/lib/dry/validation/template.rb +0 -66
- data/lib/dry/validation/type_specs.rb +0 -70
- data/spec/extensions/monads/result_spec.rb +0 -40
- data/spec/extensions/struct/schema_spec.rb +0 -32
- data/spec/fixtures/locales/en.yml +0 -8
- data/spec/fixtures/locales/pl.yml +0 -22
- data/spec/integration/custom_error_messages_spec.rb +0 -54
- data/spec/integration/custom_predicates_spec.rb +0 -228
- data/spec/integration/hints_spec.rb +0 -170
- data/spec/integration/injecting_rules_spec.rb +0 -30
- data/spec/integration/json/defining_base_schema_spec.rb +0 -41
- data/spec/integration/localized_error_messages_spec.rb +0 -72
- data/spec/integration/message_compiler_spec.rb +0 -405
- data/spec/integration/messages/i18n_spec.rb +0 -104
- data/spec/integration/optional_keys_spec.rb +0 -28
- data/spec/integration/params/predicates/array_spec.rb +0 -287
- data/spec/integration/params/predicates/empty_spec.rb +0 -263
- data/spec/integration/params/predicates/eql_spec.rb +0 -327
- data/spec/integration/params/predicates/even_spec.rb +0 -455
- data/spec/integration/params/predicates/excluded_from_spec.rb +0 -455
- data/spec/integration/params/predicates/excludes_spec.rb +0 -391
- data/spec/integration/params/predicates/false_spec.rb +0 -455
- data/spec/integration/params/predicates/filled_spec.rb +0 -467
- data/spec/integration/params/predicates/format_spec.rb +0 -454
- data/spec/integration/params/predicates/gt_spec.rb +0 -519
- data/spec/integration/params/predicates/gteq_spec.rb +0 -519
- data/spec/integration/params/predicates/included_in_spec.rb +0 -455
- data/spec/integration/params/predicates/includes_spec.rb +0 -391
- data/spec/integration/params/predicates/key_spec.rb +0 -67
- data/spec/integration/params/predicates/lt_spec.rb +0 -519
- data/spec/integration/params/predicates/lteq_spec.rb +0 -519
- data/spec/integration/params/predicates/max_size_spec.rb +0 -391
- data/spec/integration/params/predicates/min_size_spec.rb +0 -391
- data/spec/integration/params/predicates/none_spec.rb +0 -265
- data/spec/integration/params/predicates/not_eql_spec.rb +0 -327
- data/spec/integration/params/predicates/odd_spec.rb +0 -455
- data/spec/integration/params/predicates/size/fixed_spec.rb +0 -393
- data/spec/integration/params/predicates/size/range_spec.rb +0 -396
- data/spec/integration/params/predicates/true_spec.rb +0 -455
- data/spec/integration/params/predicates/type_spec.rb +0 -391
- data/spec/integration/result_spec.rb +0 -81
- data/spec/integration/schema/array_schema_spec.rb +0 -59
- data/spec/integration/schema/check_rules_spec.rb +0 -119
- data/spec/integration/schema/check_with_nested_el_spec.rb +0 -37
- data/spec/integration/schema/check_with_nth_el_spec.rb +0 -25
- data/spec/integration/schema/default_settings_spec.rb +0 -11
- data/spec/integration/schema/defining_base_schema_spec.rb +0 -41
- data/spec/integration/schema/dynamic_predicate_args_spec.rb +0 -43
- data/spec/integration/schema/each_with_set_spec.rb +0 -70
- data/spec/integration/schema/extending_dsl_spec.rb +0 -27
- data/spec/integration/schema/form_spec.rb +0 -236
- data/spec/integration/schema/hash_schema_spec.rb +0 -47
- data/spec/integration/schema/inheriting_schema_spec.rb +0 -31
- data/spec/integration/schema/input_processor_spec.rb +0 -46
- data/spec/integration/schema/json/explicit_types_spec.rb +0 -157
- data/spec/integration/schema/json_spec.rb +0 -163
- data/spec/integration/schema/macros/confirmation_spec.rb +0 -35
- data/spec/integration/schema/macros/each_spec.rb +0 -268
- data/spec/integration/schema/macros/filled_spec.rb +0 -87
- data/spec/integration/schema/macros/input_spec.rb +0 -139
- data/spec/integration/schema/macros/maybe_spec.rb +0 -99
- data/spec/integration/schema/macros/rule_spec.rb +0 -75
- data/spec/integration/schema/macros/value_spec.rb +0 -119
- data/spec/integration/schema/macros/when_spec.rb +0 -62
- data/spec/integration/schema/nested_schemas_spec.rb +0 -236
- data/spec/integration/schema/nested_values_spec.rb +0 -46
- data/spec/integration/schema/not_spec.rb +0 -34
- data/spec/integration/schema/numbers_spec.rb +0 -19
- data/spec/integration/schema/option_with_default_spec.rb +0 -64
- data/spec/integration/schema/or_spec.rb +0 -87
- data/spec/integration/schema/params/defining_base_schema_spec.rb +0 -41
- data/spec/integration/schema/params/explicit_types_spec.rb +0 -195
- data/spec/integration/schema/params_spec.rb +0 -234
- data/spec/integration/schema/predicate_verification_spec.rb +0 -9
- data/spec/integration/schema/predicates/array_spec.rb +0 -295
- data/spec/integration/schema/predicates/custom_spec.rb +0 -103
- data/spec/integration/schema/predicates/empty_spec.rb +0 -263
- data/spec/integration/schema/predicates/eql_spec.rb +0 -327
- data/spec/integration/schema/predicates/even_spec.rb +0 -455
- data/spec/integration/schema/predicates/excluded_from/array_spec.rb +0 -459
- data/spec/integration/schema/predicates/excluded_from/range_spec.rb +0 -459
- data/spec/integration/schema/predicates/excludes_spec.rb +0 -391
- data/spec/integration/schema/predicates/filled_spec.rb +0 -467
- data/spec/integration/schema/predicates/format_spec.rb +0 -455
- data/spec/integration/schema/predicates/gt_spec.rb +0 -519
- data/spec/integration/schema/predicates/gteq_spec.rb +0 -519
- data/spec/integration/schema/predicates/hash_spec.rb +0 -69
- data/spec/integration/schema/predicates/included_in/array_spec.rb +0 -459
- data/spec/integration/schema/predicates/included_in/range_spec.rb +0 -459
- data/spec/integration/schema/predicates/includes_spec.rb +0 -391
- data/spec/integration/schema/predicates/key_spec.rb +0 -88
- data/spec/integration/schema/predicates/lt_spec.rb +0 -520
- data/spec/integration/schema/predicates/lteq_spec.rb +0 -519
- data/spec/integration/schema/predicates/max_size_spec.rb +0 -391
- data/spec/integration/schema/predicates/min_size_spec.rb +0 -391
- data/spec/integration/schema/predicates/none_spec.rb +0 -265
- data/spec/integration/schema/predicates/not_eql_spec.rb +0 -391
- data/spec/integration/schema/predicates/odd_spec.rb +0 -455
- data/spec/integration/schema/predicates/size/fixed_spec.rb +0 -398
- data/spec/integration/schema/predicates/size/range_spec.rb +0 -395
- data/spec/integration/schema/predicates/type_spec.rb +0 -413
- data/spec/integration/schema/reusing_schema_spec.rb +0 -33
- data/spec/integration/schema/using_types_spec.rb +0 -135
- data/spec/integration/schema/validate_spec.rb +0 -120
- data/spec/integration/schema/xor_spec.rb +0 -35
- data/spec/integration/schema_builders_spec.rb +0 -17
- data/spec/integration/schema_spec.rb +0 -173
- data/spec/shared/message_compiler.rb +0 -11
- data/spec/shared/predicate_helper.rb +0 -15
- data/spec/shared/rule_compiler.rb +0 -8
- data/spec/spec_helper.rb +0 -62
- data/spec/support/define_struct.rb +0 -25
- data/spec/support/matchers.rb +0 -38
- data/spec/support/mutant.rb +0 -9
- data/spec/support/predicates_integration.rb +0 -7
- data/spec/unit/input_processor_compiler/json_spec.rb +0 -283
- data/spec/unit/input_processor_compiler/params_spec.rb +0 -328
- data/spec/unit/message_compiler/visit_failure_spec.rb +0 -38
- data/spec/unit/message_compiler/visit_spec.rb +0 -16
- data/spec/unit/message_compiler_spec.rb +0 -7
- data/spec/unit/predicate_registry_spec.rb +0 -34
- data/spec/unit/schema/key_spec.rb +0 -38
- data/spec/unit/schema/rule_spec.rb +0 -42
- data/spec/unit/schema/value_spec.rb +0 -131
- data/spec/unit/schema_spec.rb +0 -35
@@ -0,0 +1,94 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'dry/equalizer'
|
4
|
+
require 'dry/schema/path'
|
5
|
+
require 'dry/validation/constants'
|
6
|
+
|
7
|
+
module Dry
|
8
|
+
module Validation
|
9
|
+
# A convenient wrapper for data processed by schemas
|
10
|
+
#
|
11
|
+
# Values are available within the rule blocks. They act as hash-like
|
12
|
+
# objects and expose a convenient API for accessing data.
|
13
|
+
#
|
14
|
+
# @api public
|
15
|
+
class Values
|
16
|
+
include Enumerable
|
17
|
+
include Dry::Equalizer(:data)
|
18
|
+
|
19
|
+
# Schema's result output
|
20
|
+
#
|
21
|
+
# @return [Hash]
|
22
|
+
#
|
23
|
+
# @api private
|
24
|
+
attr_reader :data
|
25
|
+
|
26
|
+
# @api private
|
27
|
+
def initialize(data)
|
28
|
+
@data = data
|
29
|
+
end
|
30
|
+
|
31
|
+
# Read from the provided key
|
32
|
+
#
|
33
|
+
# @example
|
34
|
+
# rule(:age) do
|
35
|
+
# key.failure('must be > 18') if values[:age] <= 18
|
36
|
+
# end
|
37
|
+
#
|
38
|
+
# @param [Symbol] key
|
39
|
+
#
|
40
|
+
# @return [Object]
|
41
|
+
#
|
42
|
+
# @api public
|
43
|
+
def [](*args)
|
44
|
+
return data.dig(*args) if args.size > 1
|
45
|
+
|
46
|
+
case (key = args[0])
|
47
|
+
when Symbol, String, Array, Hash
|
48
|
+
keys = Schema::Path[key].to_a
|
49
|
+
|
50
|
+
return data.dig(*keys) unless keys.last.is_a?(Array)
|
51
|
+
|
52
|
+
last = keys.pop
|
53
|
+
vals = self.class.new(data.dig(*keys))
|
54
|
+
vals.fetch_values(*last) { nil }
|
55
|
+
else
|
56
|
+
raise ArgumentError, '+key+ must be a valid path specification'
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# @api public
|
61
|
+
def key?(key, hash = data)
|
62
|
+
return hash.key?(key) if key.is_a?(Symbol)
|
63
|
+
|
64
|
+
Schema::Path[key].reduce(hash) do |a, e|
|
65
|
+
if e.is_a?(Array)
|
66
|
+
result = e.all? { |k| key?(k, a) }
|
67
|
+
return result
|
68
|
+
else
|
69
|
+
return false unless a.is_a?(Array) ? (e >= 0 && e < a.size) : a.key?(e)
|
70
|
+
end
|
71
|
+
a[e]
|
72
|
+
end
|
73
|
+
|
74
|
+
true
|
75
|
+
end
|
76
|
+
|
77
|
+
# @api private
|
78
|
+
def respond_to_missing?(meth, include_private = false)
|
79
|
+
super || data.respond_to?(meth, include_private)
|
80
|
+
end
|
81
|
+
|
82
|
+
private
|
83
|
+
|
84
|
+
# @api private
|
85
|
+
def method_missing(meth, *args, &block)
|
86
|
+
if data.respond_to?(meth)
|
87
|
+
data.public_send(meth, *args, &block)
|
88
|
+
else
|
89
|
+
super
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
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:
|
4
|
+
version: 1.3.1
|
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: 2019-
|
11
|
+
date: 2019-08-16 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: concurrent-ruby
|
@@ -26,25 +25,19 @@ dependencies:
|
|
26
25
|
- !ruby/object:Gem::Version
|
27
26
|
version: '1.0'
|
28
27
|
- !ruby/object:Gem::Dependency
|
29
|
-
name: dry-
|
28
|
+
name: dry-core
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
31
30
|
requirements:
|
32
31
|
- - "~>"
|
33
32
|
- !ruby/object:Gem::Version
|
34
|
-
version: '0.
|
35
|
-
- - ">="
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: 0.1.3
|
33
|
+
version: '0.4'
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
37
|
requirements:
|
42
38
|
- - "~>"
|
43
39
|
- !ruby/object:Gem::Version
|
44
|
-
version: '0.
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: 0.1.3
|
40
|
+
version: '0.4'
|
48
41
|
- !ruby/object:Gem::Dependency
|
49
42
|
name: dry-equalizer
|
50
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -60,59 +53,59 @@ dependencies:
|
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0.2'
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
|
-
name: dry-
|
56
|
+
name: dry-container
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
58
|
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: 0.5.0
|
69
59
|
- - "~>"
|
70
60
|
- !ruby/object:Gem::Version
|
71
|
-
version: '0.
|
61
|
+
version: '0.7'
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 0.7.1
|
72
65
|
type: :runtime
|
73
66
|
prerelease: false
|
74
67
|
version_requirements: !ruby/object:Gem::Requirement
|
75
68
|
requirements:
|
76
|
-
- - ">="
|
77
|
-
- !ruby/object:Gem::Version
|
78
|
-
version: 0.5.0
|
79
69
|
- - "~>"
|
80
70
|
- !ruby/object:Gem::Version
|
81
|
-
version: '0.
|
71
|
+
version: '0.7'
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 0.7.1
|
82
75
|
- !ruby/object:Gem::Dependency
|
83
|
-
name: dry-
|
76
|
+
name: dry-initializer
|
84
77
|
requirement: !ruby/object:Gem::Requirement
|
85
78
|
requirements:
|
86
79
|
- - "~>"
|
87
80
|
- !ruby/object:Gem::Version
|
88
|
-
version:
|
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:
|
88
|
+
version: '3.0'
|
96
89
|
- !ruby/object:Gem::Dependency
|
97
|
-
name: dry-
|
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
|
95
|
+
version: '1.0'
|
103
96
|
- - ">="
|
104
97
|
- !ruby/object:Gem::Version
|
105
|
-
version:
|
98
|
+
version: 1.3.1
|
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
|
105
|
+
version: '1.0'
|
113
106
|
- - ">="
|
114
107
|
- !ruby/object:Gem::Version
|
115
|
-
version:
|
108
|
+
version: 1.3.1
|
116
109
|
- !ruby/object:Gem::Dependency
|
117
110
|
name: bundler
|
118
111
|
requirement: !ruby/object:Gem::Requirement
|
@@ -157,203 +150,38 @@ dependencies:
|
|
157
150
|
version: '0'
|
158
151
|
description:
|
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
|
-
- 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
162
|
- lib/dry-validation.rb
|
194
163
|
- lib/dry/validation.rb
|
195
|
-
- lib/dry/validation/
|
196
|
-
- lib/dry/validation/
|
197
|
-
- lib/dry/validation/
|
198
|
-
- lib/dry/validation/
|
164
|
+
- lib/dry/validation/config.rb
|
165
|
+
- lib/dry/validation/constants.rb
|
166
|
+
- lib/dry/validation/contract.rb
|
167
|
+
- lib/dry/validation/contract/class_interface.rb
|
168
|
+
- lib/dry/validation/evaluator.rb
|
169
|
+
- lib/dry/validation/extensions/hints.rb
|
199
170
|
- lib/dry/validation/extensions/monads.rb
|
200
|
-
- lib/dry/validation/extensions/
|
201
|
-
- lib/dry/validation/
|
202
|
-
- lib/dry/validation/
|
203
|
-
- lib/dry/validation/
|
204
|
-
- lib/dry/validation/
|
171
|
+
- lib/dry/validation/extensions/predicates_as_macros.rb
|
172
|
+
- lib/dry/validation/failures.rb
|
173
|
+
- lib/dry/validation/function.rb
|
174
|
+
- lib/dry/validation/macro.rb
|
175
|
+
- lib/dry/validation/macros.rb
|
205
176
|
- lib/dry/validation/message.rb
|
206
|
-
- lib/dry/validation/message_compiler.rb
|
207
|
-
- lib/dry/validation/message_compiler/visitor_opts.rb
|
208
177
|
- 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
|
215
|
-
- lib/dry/validation/predicates.rb
|
178
|
+
- lib/dry/validation/messages/resolver.rb
|
216
179
|
- lib/dry/validation/result.rb
|
217
|
-
- lib/dry/validation/
|
218
|
-
- lib/dry/validation/
|
219
|
-
- lib/dry/validation/
|
220
|
-
- lib/dry/validation/schema/deprecated.rb
|
221
|
-
- lib/dry/validation/schema/dsl.rb
|
222
|
-
- lib/dry/validation/schema/form.rb
|
223
|
-
- lib/dry/validation/schema/json.rb
|
224
|
-
- lib/dry/validation/schema/key.rb
|
225
|
-
- lib/dry/validation/schema/params.rb
|
226
|
-
- lib/dry/validation/schema/rule.rb
|
227
|
-
- lib/dry/validation/schema/value.rb
|
228
|
-
- lib/dry/validation/schema_compiler.rb
|
229
|
-
- lib/dry/validation/template.rb
|
230
|
-
- lib/dry/validation/type_specs.rb
|
180
|
+
- lib/dry/validation/rule.rb
|
181
|
+
- lib/dry/validation/schema_ext.rb
|
182
|
+
- lib/dry/validation/values.rb
|
231
183
|
- lib/dry/validation/version.rb
|
232
|
-
-
|
233
|
-
- spec/extensions/monads/result_spec.rb
|
234
|
-
- spec/extensions/struct/schema_spec.rb
|
235
|
-
- spec/fixtures/locales/en.yml
|
236
|
-
- spec/fixtures/locales/pl.yml
|
237
|
-
- spec/integration/custom_error_messages_spec.rb
|
238
|
-
- spec/integration/custom_predicates_spec.rb
|
239
|
-
- spec/integration/hints_spec.rb
|
240
|
-
- spec/integration/injecting_rules_spec.rb
|
241
|
-
- spec/integration/json/defining_base_schema_spec.rb
|
242
|
-
- spec/integration/localized_error_messages_spec.rb
|
243
|
-
- spec/integration/message_compiler_spec.rb
|
244
|
-
- spec/integration/messages/i18n_spec.rb
|
245
|
-
- spec/integration/optional_keys_spec.rb
|
246
|
-
- spec/integration/params/predicates/array_spec.rb
|
247
|
-
- spec/integration/params/predicates/empty_spec.rb
|
248
|
-
- spec/integration/params/predicates/eql_spec.rb
|
249
|
-
- spec/integration/params/predicates/even_spec.rb
|
250
|
-
- spec/integration/params/predicates/excluded_from_spec.rb
|
251
|
-
- spec/integration/params/predicates/excludes_spec.rb
|
252
|
-
- spec/integration/params/predicates/false_spec.rb
|
253
|
-
- spec/integration/params/predicates/filled_spec.rb
|
254
|
-
- spec/integration/params/predicates/format_spec.rb
|
255
|
-
- spec/integration/params/predicates/gt_spec.rb
|
256
|
-
- spec/integration/params/predicates/gteq_spec.rb
|
257
|
-
- spec/integration/params/predicates/included_in_spec.rb
|
258
|
-
- spec/integration/params/predicates/includes_spec.rb
|
259
|
-
- spec/integration/params/predicates/key_spec.rb
|
260
|
-
- spec/integration/params/predicates/lt_spec.rb
|
261
|
-
- spec/integration/params/predicates/lteq_spec.rb
|
262
|
-
- spec/integration/params/predicates/max_size_spec.rb
|
263
|
-
- spec/integration/params/predicates/min_size_spec.rb
|
264
|
-
- spec/integration/params/predicates/none_spec.rb
|
265
|
-
- spec/integration/params/predicates/not_eql_spec.rb
|
266
|
-
- spec/integration/params/predicates/odd_spec.rb
|
267
|
-
- spec/integration/params/predicates/size/fixed_spec.rb
|
268
|
-
- spec/integration/params/predicates/size/range_spec.rb
|
269
|
-
- spec/integration/params/predicates/true_spec.rb
|
270
|
-
- spec/integration/params/predicates/type_spec.rb
|
271
|
-
- spec/integration/result_spec.rb
|
272
|
-
- spec/integration/schema/array_schema_spec.rb
|
273
|
-
- spec/integration/schema/check_rules_spec.rb
|
274
|
-
- spec/integration/schema/check_with_nested_el_spec.rb
|
275
|
-
- spec/integration/schema/check_with_nth_el_spec.rb
|
276
|
-
- spec/integration/schema/default_settings_spec.rb
|
277
|
-
- spec/integration/schema/defining_base_schema_spec.rb
|
278
|
-
- spec/integration/schema/dynamic_predicate_args_spec.rb
|
279
|
-
- spec/integration/schema/each_with_set_spec.rb
|
280
|
-
- spec/integration/schema/extending_dsl_spec.rb
|
281
|
-
- spec/integration/schema/form_spec.rb
|
282
|
-
- spec/integration/schema/hash_schema_spec.rb
|
283
|
-
- spec/integration/schema/inheriting_schema_spec.rb
|
284
|
-
- spec/integration/schema/input_processor_spec.rb
|
285
|
-
- spec/integration/schema/json/explicit_types_spec.rb
|
286
|
-
- spec/integration/schema/json_spec.rb
|
287
|
-
- spec/integration/schema/macros/confirmation_spec.rb
|
288
|
-
- spec/integration/schema/macros/each_spec.rb
|
289
|
-
- spec/integration/schema/macros/filled_spec.rb
|
290
|
-
- spec/integration/schema/macros/input_spec.rb
|
291
|
-
- spec/integration/schema/macros/maybe_spec.rb
|
292
|
-
- spec/integration/schema/macros/rule_spec.rb
|
293
|
-
- spec/integration/schema/macros/value_spec.rb
|
294
|
-
- spec/integration/schema/macros/when_spec.rb
|
295
|
-
- spec/integration/schema/nested_schemas_spec.rb
|
296
|
-
- spec/integration/schema/nested_values_spec.rb
|
297
|
-
- spec/integration/schema/not_spec.rb
|
298
|
-
- spec/integration/schema/numbers_spec.rb
|
299
|
-
- spec/integration/schema/option_with_default_spec.rb
|
300
|
-
- spec/integration/schema/or_spec.rb
|
301
|
-
- spec/integration/schema/params/defining_base_schema_spec.rb
|
302
|
-
- spec/integration/schema/params/explicit_types_spec.rb
|
303
|
-
- spec/integration/schema/params_spec.rb
|
304
|
-
- spec/integration/schema/predicate_verification_spec.rb
|
305
|
-
- spec/integration/schema/predicates/array_spec.rb
|
306
|
-
- spec/integration/schema/predicates/custom_spec.rb
|
307
|
-
- spec/integration/schema/predicates/empty_spec.rb
|
308
|
-
- spec/integration/schema/predicates/eql_spec.rb
|
309
|
-
- spec/integration/schema/predicates/even_spec.rb
|
310
|
-
- spec/integration/schema/predicates/excluded_from/array_spec.rb
|
311
|
-
- spec/integration/schema/predicates/excluded_from/range_spec.rb
|
312
|
-
- spec/integration/schema/predicates/excludes_spec.rb
|
313
|
-
- spec/integration/schema/predicates/filled_spec.rb
|
314
|
-
- spec/integration/schema/predicates/format_spec.rb
|
315
|
-
- spec/integration/schema/predicates/gt_spec.rb
|
316
|
-
- spec/integration/schema/predicates/gteq_spec.rb
|
317
|
-
- spec/integration/schema/predicates/hash_spec.rb
|
318
|
-
- spec/integration/schema/predicates/included_in/array_spec.rb
|
319
|
-
- spec/integration/schema/predicates/included_in/range_spec.rb
|
320
|
-
- spec/integration/schema/predicates/includes_spec.rb
|
321
|
-
- spec/integration/schema/predicates/key_spec.rb
|
322
|
-
- spec/integration/schema/predicates/lt_spec.rb
|
323
|
-
- spec/integration/schema/predicates/lteq_spec.rb
|
324
|
-
- spec/integration/schema/predicates/max_size_spec.rb
|
325
|
-
- spec/integration/schema/predicates/min_size_spec.rb
|
326
|
-
- spec/integration/schema/predicates/none_spec.rb
|
327
|
-
- spec/integration/schema/predicates/not_eql_spec.rb
|
328
|
-
- spec/integration/schema/predicates/odd_spec.rb
|
329
|
-
- spec/integration/schema/predicates/size/fixed_spec.rb
|
330
|
-
- spec/integration/schema/predicates/size/range_spec.rb
|
331
|
-
- spec/integration/schema/predicates/type_spec.rb
|
332
|
-
- spec/integration/schema/reusing_schema_spec.rb
|
333
|
-
- spec/integration/schema/using_types_spec.rb
|
334
|
-
- spec/integration/schema/validate_spec.rb
|
335
|
-
- spec/integration/schema/xor_spec.rb
|
336
|
-
- spec/integration/schema_builders_spec.rb
|
337
|
-
- spec/integration/schema_spec.rb
|
338
|
-
- spec/shared/message_compiler.rb
|
339
|
-
- spec/shared/predicate_helper.rb
|
340
|
-
- spec/shared/rule_compiler.rb
|
341
|
-
- spec/spec_helper.rb
|
342
|
-
- spec/support/define_struct.rb
|
343
|
-
- spec/support/matchers.rb
|
344
|
-
- spec/support/mutant.rb
|
345
|
-
- spec/support/predicates_integration.rb
|
346
|
-
- spec/unit/input_processor_compiler/json_spec.rb
|
347
|
-
- spec/unit/input_processor_compiler/params_spec.rb
|
348
|
-
- spec/unit/message_compiler/visit_failure_spec.rb
|
349
|
-
- spec/unit/message_compiler/visit_spec.rb
|
350
|
-
- spec/unit/message_compiler_spec.rb
|
351
|
-
- spec/unit/predicate_registry_spec.rb
|
352
|
-
- spec/unit/schema/key_spec.rb
|
353
|
-
- spec/unit/schema/rule_spec.rb
|
354
|
-
- spec/unit/schema/value_spec.rb
|
355
|
-
- spec/unit/schema_spec.rb
|
356
|
-
homepage: https://github.com/dry-rb/dry-validation
|
184
|
+
homepage: https://dry-rb.org/gems/dry-validation
|
357
185
|
licenses:
|
358
186
|
- MIT
|
359
187
|
metadata: {}
|
@@ -365,7 +193,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
365
193
|
requirements:
|
366
194
|
- - ">="
|
367
195
|
- !ruby/object:Gem::Version
|
368
|
-
version: 2.
|
196
|
+
version: '2.3'
|
369
197
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
370
198
|
requirements:
|
371
199
|
- - ">="
|
@@ -375,128 +203,5 @@ requirements: []
|
|
375
203
|
rubygems_version: 3.0.3
|
376
204
|
signing_key:
|
377
205
|
specification_version: 4
|
378
|
-
summary:
|
379
|
-
test_files:
|
380
|
-
- spec/extensions/monads/result_spec.rb
|
381
|
-
- spec/extensions/struct/schema_spec.rb
|
382
|
-
- spec/fixtures/locales/en.yml
|
383
|
-
- spec/fixtures/locales/pl.yml
|
384
|
-
- spec/integration/custom_error_messages_spec.rb
|
385
|
-
- spec/integration/custom_predicates_spec.rb
|
386
|
-
- spec/integration/hints_spec.rb
|
387
|
-
- spec/integration/injecting_rules_spec.rb
|
388
|
-
- spec/integration/json/defining_base_schema_spec.rb
|
389
|
-
- spec/integration/localized_error_messages_spec.rb
|
390
|
-
- spec/integration/message_compiler_spec.rb
|
391
|
-
- spec/integration/messages/i18n_spec.rb
|
392
|
-
- spec/integration/optional_keys_spec.rb
|
393
|
-
- spec/integration/params/predicates/array_spec.rb
|
394
|
-
- spec/integration/params/predicates/empty_spec.rb
|
395
|
-
- spec/integration/params/predicates/eql_spec.rb
|
396
|
-
- spec/integration/params/predicates/even_spec.rb
|
397
|
-
- spec/integration/params/predicates/excluded_from_spec.rb
|
398
|
-
- spec/integration/params/predicates/excludes_spec.rb
|
399
|
-
- spec/integration/params/predicates/false_spec.rb
|
400
|
-
- spec/integration/params/predicates/filled_spec.rb
|
401
|
-
- spec/integration/params/predicates/format_spec.rb
|
402
|
-
- spec/integration/params/predicates/gt_spec.rb
|
403
|
-
- spec/integration/params/predicates/gteq_spec.rb
|
404
|
-
- spec/integration/params/predicates/included_in_spec.rb
|
405
|
-
- spec/integration/params/predicates/includes_spec.rb
|
406
|
-
- spec/integration/params/predicates/key_spec.rb
|
407
|
-
- spec/integration/params/predicates/lt_spec.rb
|
408
|
-
- spec/integration/params/predicates/lteq_spec.rb
|
409
|
-
- spec/integration/params/predicates/max_size_spec.rb
|
410
|
-
- spec/integration/params/predicates/min_size_spec.rb
|
411
|
-
- spec/integration/params/predicates/none_spec.rb
|
412
|
-
- spec/integration/params/predicates/not_eql_spec.rb
|
413
|
-
- spec/integration/params/predicates/odd_spec.rb
|
414
|
-
- spec/integration/params/predicates/size/fixed_spec.rb
|
415
|
-
- spec/integration/params/predicates/size/range_spec.rb
|
416
|
-
- spec/integration/params/predicates/true_spec.rb
|
417
|
-
- spec/integration/params/predicates/type_spec.rb
|
418
|
-
- spec/integration/result_spec.rb
|
419
|
-
- spec/integration/schema/array_schema_spec.rb
|
420
|
-
- spec/integration/schema/check_rules_spec.rb
|
421
|
-
- spec/integration/schema/check_with_nested_el_spec.rb
|
422
|
-
- spec/integration/schema/check_with_nth_el_spec.rb
|
423
|
-
- spec/integration/schema/default_settings_spec.rb
|
424
|
-
- spec/integration/schema/defining_base_schema_spec.rb
|
425
|
-
- spec/integration/schema/dynamic_predicate_args_spec.rb
|
426
|
-
- spec/integration/schema/each_with_set_spec.rb
|
427
|
-
- spec/integration/schema/extending_dsl_spec.rb
|
428
|
-
- spec/integration/schema/form_spec.rb
|
429
|
-
- spec/integration/schema/hash_schema_spec.rb
|
430
|
-
- spec/integration/schema/inheriting_schema_spec.rb
|
431
|
-
- spec/integration/schema/input_processor_spec.rb
|
432
|
-
- spec/integration/schema/json/explicit_types_spec.rb
|
433
|
-
- spec/integration/schema/json_spec.rb
|
434
|
-
- spec/integration/schema/macros/confirmation_spec.rb
|
435
|
-
- spec/integration/schema/macros/each_spec.rb
|
436
|
-
- spec/integration/schema/macros/filled_spec.rb
|
437
|
-
- spec/integration/schema/macros/input_spec.rb
|
438
|
-
- spec/integration/schema/macros/maybe_spec.rb
|
439
|
-
- spec/integration/schema/macros/rule_spec.rb
|
440
|
-
- spec/integration/schema/macros/value_spec.rb
|
441
|
-
- spec/integration/schema/macros/when_spec.rb
|
442
|
-
- spec/integration/schema/nested_schemas_spec.rb
|
443
|
-
- spec/integration/schema/nested_values_spec.rb
|
444
|
-
- spec/integration/schema/not_spec.rb
|
445
|
-
- spec/integration/schema/numbers_spec.rb
|
446
|
-
- spec/integration/schema/option_with_default_spec.rb
|
447
|
-
- spec/integration/schema/or_spec.rb
|
448
|
-
- spec/integration/schema/params/defining_base_schema_spec.rb
|
449
|
-
- spec/integration/schema/params/explicit_types_spec.rb
|
450
|
-
- spec/integration/schema/params_spec.rb
|
451
|
-
- spec/integration/schema/predicate_verification_spec.rb
|
452
|
-
- spec/integration/schema/predicates/array_spec.rb
|
453
|
-
- spec/integration/schema/predicates/custom_spec.rb
|
454
|
-
- spec/integration/schema/predicates/empty_spec.rb
|
455
|
-
- spec/integration/schema/predicates/eql_spec.rb
|
456
|
-
- spec/integration/schema/predicates/even_spec.rb
|
457
|
-
- spec/integration/schema/predicates/excluded_from/array_spec.rb
|
458
|
-
- spec/integration/schema/predicates/excluded_from/range_spec.rb
|
459
|
-
- spec/integration/schema/predicates/excludes_spec.rb
|
460
|
-
- spec/integration/schema/predicates/filled_spec.rb
|
461
|
-
- spec/integration/schema/predicates/format_spec.rb
|
462
|
-
- spec/integration/schema/predicates/gt_spec.rb
|
463
|
-
- spec/integration/schema/predicates/gteq_spec.rb
|
464
|
-
- spec/integration/schema/predicates/hash_spec.rb
|
465
|
-
- spec/integration/schema/predicates/included_in/array_spec.rb
|
466
|
-
- spec/integration/schema/predicates/included_in/range_spec.rb
|
467
|
-
- spec/integration/schema/predicates/includes_spec.rb
|
468
|
-
- spec/integration/schema/predicates/key_spec.rb
|
469
|
-
- spec/integration/schema/predicates/lt_spec.rb
|
470
|
-
- spec/integration/schema/predicates/lteq_spec.rb
|
471
|
-
- spec/integration/schema/predicates/max_size_spec.rb
|
472
|
-
- spec/integration/schema/predicates/min_size_spec.rb
|
473
|
-
- spec/integration/schema/predicates/none_spec.rb
|
474
|
-
- spec/integration/schema/predicates/not_eql_spec.rb
|
475
|
-
- spec/integration/schema/predicates/odd_spec.rb
|
476
|
-
- spec/integration/schema/predicates/size/fixed_spec.rb
|
477
|
-
- spec/integration/schema/predicates/size/range_spec.rb
|
478
|
-
- spec/integration/schema/predicates/type_spec.rb
|
479
|
-
- spec/integration/schema/reusing_schema_spec.rb
|
480
|
-
- spec/integration/schema/using_types_spec.rb
|
481
|
-
- spec/integration/schema/validate_spec.rb
|
482
|
-
- spec/integration/schema/xor_spec.rb
|
483
|
-
- spec/integration/schema_builders_spec.rb
|
484
|
-
- spec/integration/schema_spec.rb
|
485
|
-
- spec/shared/message_compiler.rb
|
486
|
-
- spec/shared/predicate_helper.rb
|
487
|
-
- spec/shared/rule_compiler.rb
|
488
|
-
- spec/spec_helper.rb
|
489
|
-
- spec/support/define_struct.rb
|
490
|
-
- spec/support/matchers.rb
|
491
|
-
- spec/support/mutant.rb
|
492
|
-
- spec/support/predicates_integration.rb
|
493
|
-
- spec/unit/input_processor_compiler/json_spec.rb
|
494
|
-
- spec/unit/input_processor_compiler/params_spec.rb
|
495
|
-
- spec/unit/message_compiler/visit_failure_spec.rb
|
496
|
-
- spec/unit/message_compiler/visit_spec.rb
|
497
|
-
- spec/unit/message_compiler_spec.rb
|
498
|
-
- spec/unit/predicate_registry_spec.rb
|
499
|
-
- spec/unit/schema/key_spec.rb
|
500
|
-
- spec/unit/schema/rule_spec.rb
|
501
|
-
- spec/unit/schema/value_spec.rb
|
502
|
-
- spec/unit/schema_spec.rb
|
206
|
+
summary: Validation library
|
207
|
+
test_files: []
|