module Datey
Public Class Methods
format(date, context = :past)
click to toggle source
# File lib/datey.rb, line 6 def self.format(date, context = :past) Formatter.new(date, context) end
interrogate(date)
click to toggle source
# File lib/datey.rb, line 10 def self.interrogate(date) Interrogator.new(date) end