Sha256: 436682caf7c20b8c1529429f31c893e5b03f683b685e5bcba081d43da52236d0
Contents?: true
Size: 938 Bytes
Versions: 17
Compression:
Stored size: 938 Bytes
Contents
module Virtus class Attribute # Coercer accessor wrapper # # @api private class Coercer < Virtus::Coercer # @api private attr_reader :method, :coercers # Initialize a new coercer object # # @param [Object] coercers accessor # @param [Symbol] coercion method # # @return [undefined] # # @api private def initialize(type, coercers) super(type) @method = type.coercion_method @coercers = coercers end # Coerce given value # # @return [Object] # # @api private def call(value) coercers[value.class].public_send(method, value) rescue ::Coercible::UnsupportedCoercion value end # @api public def success?(primitive, value) coercers[primitive].coerced?(value) end end # class Coercer end # class Attribute end # module Virtus
Version data entries
17 entries across 15 versions & 5 rubygems