Sha256: 468b7924cb3aac15f5043a192f6dcbf4fdd3b047b16f0c648f9c80b43326033d
Contents?: true
Size: 391 Bytes
Versions: 28
Compression:
Stored size: 391 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2023 Eric Crane. All rights reserved. # # Conversion tool: String to Date. # require 'chronic' module Gloo module Convert class StringToDate # # Convert the given string value to date. # def convert( value ) return Chronic.parse( value ) end end end end
Version data entries
28 entries across 28 versions & 1 rubygems