From 4a8f0db62dd9be5d1ed85650df0375f4605ed58d Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Fri, 7 Oct 2016 21:55:33 -0500 Subject: [PATCH] Initial implementation: format(TimeInterval, fmt) --- .gitignore | 1 + test/nim.cfg | 6 ++++++ test/ttimeutils.nim | 8 ++++++++ timeutils.nim | 5 +++++ timeutils.nimble | 11 +++++++++++ 5 files changed, 31 insertions(+) create mode 100644 test/nim.cfg create mode 100644 test/ttimeutils.nim create mode 100644 timeutils.nim create mode 100644 timeutils.nimble diff --git a/.gitignore b/.gitignore index 3440489..f4bf45c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *.sw? nimcache/ test/ttimeutils +*.ndb diff --git a/test/nim.cfg b/test/nim.cfg new file mode 100644 index 0000000..a2626a3 --- /dev/null +++ b/test/nim.cfg @@ -0,0 +1,6 @@ +path = "." +hints = off +linedir = off +debuginfo +stacktrace = on +linetrace = on diff --git a/test/ttimeutils.nim b/test/ttimeutils.nim new file mode 100644 index 0000000..6e6b016 --- /dev/null +++ b/test/ttimeutils.nim @@ -0,0 +1,8 @@ +import times, timeutils, unittest + +suite "timeutils": + test "format TimeInterval": + let interval = seconds(70) + check interval.format("ss's'") == "10s" + check interval.format("mm'm' ss's'") == "01m 10s" + check interval.format("mm:ss") == "01:10" diff --git a/timeutils.nim b/timeutils.nim new file mode 100644 index 0000000..80a71ca --- /dev/null +++ b/timeutils.nim @@ -0,0 +1,5 @@ +import times + +proc format*(ti: TimeInterval, fmt: string): string = + let info = getGMTime(fromSeconds(0) + ti) + return info.format(fmt) diff --git a/timeutils.nimble b/timeutils.nimble new file mode 100644 index 0000000..cf70893 --- /dev/null +++ b/timeutils.nimble @@ -0,0 +1,11 @@ +# Package + +version = "0.1.0" +author = "Jonathan Bernard" +description = "Utility methods to fill in the horrid time support in Nim\'s stdlib. This is holding me over until I can write a proper time module for the stdlib and submit it." +license = "BSD3" + +# Dependencies + +requires "nim >= 0.15.0" +