Sha256: 772275c69b8f2e283f6e10f25e3b384266e3c5f5a3b18a4c3683727391438e17

Contents?: true

Size: 797 Bytes

Versions: 5

Compression:

Stored size: 797 Bytes

Contents

# frozen_string_literal: true

require 'avromatic/model/types/abstract_type'

module Avromatic
  module Model
    module Types
      class BooleanType < AbstractType
        VALUE_CLASSES = [::TrueClass, ::FalseClass].freeze

        def value_classes
          VALUE_CLASSES
        end

        def name
          'boolean'
        end

        def coerce(input)
          if coercible?(input)
            input
          else
            raise ArgumentError.new("Could not coerce '#{input.inspect}' to #{name}")
          end
        end

        def coercible?(input)
          input.nil? || input.is_a?(::TrueClass) || input.is_a?(::FalseClass)
        end

        alias_method :coerced?, :coercible?

        def serialize(value, **)
          value
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
avromatic-2.2.1 lib/avromatic/model/types/boolean_type.rb
avromatic-2.2.0 lib/avromatic/model/types/boolean_type.rb
avromatic-2.1.0 lib/avromatic/model/types/boolean_type.rb
avromatic-2.0.1 lib/avromatic/model/types/boolean_type.rb
avromatic-2.0.0 lib/avromatic/model/types/boolean_type.rb