Sha256: 9be76e8d0b94ec3f4789de5c2f98e4adb72732ebee18fef2e632c4c9d3ffd398

Contents?: true

Size: 558 Bytes

Versions: 6

Compression:

Stored size: 558 Bytes

Contents

# frozen_string_literal: true

require 'time'

using SmartCore::Ext::BasicObjectAsObject

# @api public
# @since 0.1.0
# @version 0.3.0
SmartCore::Types::Value.define_type(:Time) do |type|
  type.define_checker do |value|
    value.is_a?(::Time)
  end

  type.define_caster do |value|
    next value if value.is_a?(::Time)

    begin
      SmartCore::Types::Value::Integer.valid?(value) ? ::Time.at(value) : ::Time.parse(value)
    rescue ::TypeError, ::ArgumentError
      raise(SmartCore::Types::TypeCastingError, 'Non-castable to Time')
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
smart_types-0.8.0 lib/smart_core/types/value/time.rb
smart_types-0.7.1 lib/smart_core/types/value/time.rb
smart_types-0.7.0 lib/smart_core/types/value/time.rb
smart_types-0.6.0 lib/smart_core/types/value/time.rb
smart_types-0.4.0 lib/smart_core/types/value/time.rb
smart_types-0.3.0 lib/smart_core/types/value/time.rb