Sha256: 55080f79b83a5c42001a3d0ff5dfe591d91be4d379db15bad8dbca8b05fb3fda
Contents?: true
Size: 1.64 KB
Versions: 8
Compression:
Stored size: 1.64 KB
Contents
require 'dry/core/deprecations' Dry::Core::Deprecations.warn('Form was renamed to Params and will be removed in the next version', tag: :'dry-validation') require 'dry/types/compat/int' require 'dry/types/compat/form_types' require 'dry/validation/input_processor_compiler/params' require 'dry/validation/schema/params' module Dry module Validation class InputProcessorCompiler::Form < InputProcessorCompiler PREDICATE_MAP = { default: 'string', none?: 'form.nil', bool?: 'form.bool', true?: 'form.true', false?: 'form.false', str?: 'string', int?: 'form.integer', float?: 'form.float', decimal?: 'form.decimal', date?: 'form.date', date_time?: 'form.date_time', time?: 'form.time', hash?: 'form.hash', array?: 'form.array' }.freeze CONST_MAP = { NilClass => 'form.nil', String => 'string', Integer => 'form.integer', Float => 'form.float', BigDecimal => 'form.decimal', Array => 'form.array', Hash => 'form.hash', Date => 'form.date', DateTime => 'form.date_time', Time => 'form.time', TrueClass => 'form.true', FalseClass => 'form.false' }.freeze def identifier :form end def hash_node(schema) [:form_hash, [schema, {}]] end def array_node(members) [:form_array, [members, {}]] end end class << self alias_method :Form, :Params end Schema::Form = Schema::Params Schema::DEFAULT_PROCESSOR_MAP[:form] = InputProcessorCompiler::Form.new end end
Version data entries
8 entries across 8 versions & 1 rubygems