This repository has been archived on 2020-02-24. You can view files and clone it, but cannot push or open issues or pull requests.
plsql-spec-example/spec/helpers/time_helpers.rb
2020-01-16 14:11:30 +03:00

6 lines
144 B
Ruby

# return current date with time 00:00:00
def Time.today
t = Time.now
Time.local(t.year, t.month, t.day)
end unless Time.respond_to?(:today)