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

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

The newest version!
module Coercible
  class Coercer

    # Coerce DateTime values
    class DateTime < Object
      primitive ::DateTime

      include TimeCoercions

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

    end # class DateTime

  end # class Coercer
end # module Coercible




© 2015 - 2024 Weber Informatics LLC | Privacy Policy