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

gems.coercible-1.0.0.lib.coercible.coercer.date.rb Maven / Gradle / Ivy

The newest version!
module Coercible
  class Coercer

    # Coerce Date values
    class Date < Object
      include TimeCoercions

      primitive ::Date

      # Passthrough the value
      #
      # @example
      #   coercer[DateTime].to_date(date)  # => Date object
      #
      # @param [DateTime] value
      #
      # @return [Date]
      #
      # @api public
      def to_date(value)
        value
      end

    end # class Date

  end # class Coercer
end # module Coercible




© 2015 - 2024 Weber Informatics LLC | Privacy Policy