The Weekdays class provides useful weekday terminology to Numeric.
[Source]
# File lib/more/facets/times.rb, line 399 def initialize(n) @n = n end
Alias for since
# File lib/more/facets/times.rb, line 403 def ago(time = ::Time.now) step :down, time end
Alias for ago
# File lib/more/facets/times.rb, line 409 def since(time = ::Time.now) step :up, time end
[Validate]