All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.virtus-1.0.5.lib.virtus.attribute.coercible.rb Maven / Gradle / Ivy

The newest version!
module Virtus
  class Attribute

    # Attribute extension providing coercion when setting an attribute value
    #
    module Coercible

      # Coerce value before setting
      #
      # @see Accessor#set
      #
      # @api public
      def set(instance, value)
        super(instance, coerce(value))
      end

    end # Coercible

  end # Attribute
end # Virtus




© 2015 - 2025 Weber Informatics LLC | Privacy Policy