Sha256: 5f860cdf8cd5566ffdb724f50d6014ff8d1a290a29bd67a61ca5b2e26c04a612
Contents?: true
Size: 637 Bytes
Versions: 2
Compression:
Stored size: 637 Bytes
Contents
# encoding: utf-8 # frozen_string_literal: true module Mixture module Coerce # Handles coercion of the Date class. class Date < Base type Types::Date coerce_to(Types::Object, Itself) coerce_to(Types::String, :to_s) coerce_to(Types::Time, :to_time) coerce_to(Types::Date, :to_date) coerce_to(Types::DateTime, :to_datetime) coerce_to(Types::Array) { |value| value.to_time.to_a } coerce_to(Types::Float) { |value| value.to_time.to_f } coerce_to(Types::Integer) { |value| value.to_time.to_i } coerce_to(Types::Rational) { |value| value.to_time.to_r } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mixture-0.7.1 | lib/mixture/coerce/date.rb |
mixture-0.7.0 | lib/mixture/coerce/date.rb |