Sha256: ea3bf60b2728b286f1eeadb58000a62b9f69bf4b19406238febe24d5a617c45f
Contents?: true
Size: 331 Bytes
Versions: 43
Compression:
Stored size: 331 Bytes
Contents
Integer.class_eval do unless instance_methods.include?(:to_date) def to_date to_time.to_date end end unless instance_methods.include?(:to_datetime) def to_datetime to_time.to_datetime end end unless instance_methods.include?(:to_time) def to_time Time.at(self) end end end
Version data entries
43 entries across 43 versions & 1 rubygems