Sha256: 25e8605ed8552837cc58ebef0a540ae5ac661ea69516ed167410bf8889cf13bc
Contents?: true
Size: 364 Bytes
Versions: 7
Compression:
Stored size: 364 Bytes
Contents
# frozen_string_literal: true require 'date' Date.class_eval do unless method_defined?(:day_of_week) # @return [String] - Full day word def day_of_week strftime('%A') end end end DateTime.class_eval do unless method_defined?(:day_of_week) # @return [String] - Full day word def day_of_week strftime('%A') end end end
Version data entries
7 entries across 7 versions & 1 rubygems