Sha256: 1c9bc25cb59d9b23654f53d631760ffa3e994ffe160769788105771334fb2f4e
Contents?: true
Size: 415 Bytes
Versions: 29
Compression:
Stored size: 415 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2020 Eric Crane. All rights reserved. # # Conversion tool: String to Date Time. # require 'chronic' module GlooLang module Convert class StringToDateTime # # Convert the given string value to a date and time. # def convert( value ) return Chronic.parse( value ) end end end end
Version data entries
29 entries across 29 versions & 1 rubygems