Sha256: 4f20afff3bad97375bc8169dbe10677032c00372a50d2015bb9cb8295517dba0

Contents?: true

Size: 1.54 KB

Versions: 7

Compression:

Stored size: 1.54 KB

Contents

# NOTE: https://blog.daveallie.com/clean-monkey-patching/

require 'active_support/core_ext/date'

module Ensurance
  module DateEnsure
    def self.prepended(base)
      base.singleton_class.prepend(ClassMethods)
    end

    module ClassMethods
      DATE_ENSURE_FORMATS = %w[%m/%d/%Y %Y/%m/%d].freeze
      def ensure(thing)
        case thing.class.name
        when 'NilClass'
          nil
        when 'Integer', 'Float'
          Time.ensure(thing).to_date
        when 'Date'
          thing
        when 'String'
          if thing.to_i.to_s == thing
            ::Time.at(thing.to_i).to_date
          elsif thing.to_f.to_s == thing
            ::Time.at(thing.to_f).to_date
          elsif thing.index('/')
            # Assume US Date format
            result = nil
            DATE_ENSURE_FORMATS.each do |f|
              begin
                result = Date.strptime(thing, f)
                break
              rescue ArgumentError
              end
            end
            raise ArgumentError, "Bad Date: #{thing}".yellow unless result
            result
          else
            ::Date.parse(thing)
          end
        else
          if thing.respond_to?(:to_date)
            thing.to_date
          else
            raise ArgumentError, "Unknown Type for Date to ensure: #{thing.class.name}"
          end
        end
      end

      def ensure!(thing)
        result = self.ensure(thing)
        raise ArgumentError, "Cannot Date.ensure(#{thing})" unless result
        result
      end
    end
  end
end

::Date.prepend(Ensurance::DateEnsure)

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ensurance-0.1.18 lib/ensurance/date_ensure.rb
ensurance-0.1.17 lib/ensurance/date_ensure.rb
ensurance-0.1.16 lib/ensurance/date_ensure.rb
ensurance-0.1.15 lib/ensurance/date_ensure.rb
ensurance-0.1.14 lib/ensurance/date_ensure.rb
ensurance-0.1.13 lib/ensurance/date_ensure.rb
ensurance-0.1.12 lib/ensurance/date_ensure.rb