Sha256: bc25a672a5548e9a51b4d882b8e434e94ffa46feaee918480a622e8fcc85bb4b

Contents?: true

Size: 908 Bytes

Versions: 2

Compression:

Stored size: 908 Bytes

Contents

gem 'virtus'
require "virtus"

module Representable
  module VirtusCoercion
    class Coercer
      def initialize(type)
        @type = type
      end

      # This gets called when the :render_filter or :parse_filter option is evaluated.
      # Usually the Coercer instance is an element in a Pipeline to allow >1 filters per property.
      def call(input, options)
        Virtus::Attribute.build(@type).coerce(input)
      end
    end


    def self.included(base)
      base.class_eval do
        extend ClassMethods
        register_feature VirtusCoercion
      end
    end


    module ClassMethods
      def property(name, options={}, &block)
        super.tap do |definition|
          return definition unless type = options[:type]

          definition.merge!(render_filter: coercer = Coercer.new(type))
          definition.merge!(parse_filter: coercer)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
representable-3.1.1 lib/representable/virtus_coercion.rb
representable-3.1.0 lib/representable/virtus_coercion.rb