mirror of
https://github.com/jimeh/redistat.git
synced 2026-02-19 13:26:39 +00:00
9 lines
155 B
Ruby
9 lines
155 B
Ruby
module Redistat
|
|
module DateHelper
|
|
def to_redistat(depth = nil)
|
|
Redistat::Date.new(self, depth)
|
|
end
|
|
alias :to_rs :to_redistat
|
|
end
|
|
end
|